Local Builders
- Size
- 13 members
Sursum comes ciminatio asperiores crebro.
Overview
groups / #28
Sursum comes ciminatio asperiores crebro.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/groups/28" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/groups/28" ); const group = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/groups.d.ts https://example-data.com/types/groups.d.ts
import type { Group } from "./types/groups";
const res = await fetch(
"https://example-data.com/api/v1/groups/28"
);
const group = (await res.json()) as Group; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/groups/28"
)
group = res.json() Response
{
"id": 28,
"name": "Local Builders",
"slug": "local-builders",
"description": "Sursum comes ciminatio asperiores crebro.",
"memberCount": 13,
"isPublic": true,
"ownerUserId": 53,
"createdAt": "2024-08-19T04:16:37.277Z",
"updatedAt": "2025-03-18T21:32:12.368Z"
}