Curious Creators
- Size
- 13 members
Ait alienus cedo tollo error perferendis.
Overview
groups / #21
Ait alienus cedo tollo error perferendis.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/groups/21" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/groups/21" ); 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/21"
);
const group = (await res.json()) as Group; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/groups/21"
)
group = res.json() Response
{
"id": 21,
"name": "Curious Creators",
"slug": "curious-creators",
"description": "Ait alienus cedo tollo error perferendis.",
"memberCount": 13,
"isPublic": true,
"ownerUserId": 19,
"createdAt": "2025-02-21T23:59:46.450Z",
"updatedAt": "2026-02-24T06:21:16.332Z"
}