Local Makers
- Size
- 12 members
Abutor caecus cibo assentator textus defungo adfero.
Overview
groups / #61
Abutor caecus cibo assentator textus defungo adfero.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/groups/61" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/groups/61" ); 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/61"
);
const group = (await res.json()) as Group; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/groups/61"
)
group = res.json() Response
{
"id": 61,
"name": "Local Makers",
"slug": "local-makers",
"description": "Abutor caecus cibo assentator textus defungo adfero.",
"memberCount": 12,
"isPublic": true,
"ownerUserId": 108,
"createdAt": "2024-12-11T11:07:05.019Z",
"updatedAt": "2025-08-02T15:13:47.313Z"
}