Elite Creators
- Size
- 12 members
Molestiae strenuus crur substantia.
Overview
groups / #22
Molestiae strenuus crur substantia.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/groups/22" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/groups/22" ); 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/22"
);
const group = (await res.json()) as Group; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/groups/22"
)
group = res.json() Response
{
"id": 22,
"name": "Elite Creators",
"slug": "elite-creators",
"description": "Molestiae strenuus crur substantia.",
"memberCount": 12,
"isPublic": true,
"ownerUserId": 233,
"createdAt": "2026-02-14T21:30:24.076Z",
"updatedAt": "2026-05-05T09:01:21.647Z"
}