Creative Thinkers
- Size
- 11 members
Paens totam clamo vulgivagus thermae defendo amitto cedo.
Overview
groups / #45
Paens totam clamo vulgivagus thermae defendo amitto cedo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/groups/45" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/groups/45" ); 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/45"
);
const group = (await res.json()) as Group; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/groups/45"
)
group = res.json() Response
{
"id": 45,
"name": "Creative Thinkers",
"slug": "creative-thinkers",
"description": "Paens totam clamo vulgivagus thermae defendo amitto cedo.",
"memberCount": 11,
"isPublic": true,
"ownerUserId": 52,
"createdAt": "2024-09-06T17:30:38.402Z",
"updatedAt": "2025-02-13T09:02:48.416Z"
}