Bright Thinkers
- Size
- 10 members
Vociferor placeat autem aequitas maiores appello.
Overview
groups / #27
Vociferor placeat autem aequitas maiores appello.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/groups/27" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/groups/27" ); 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/27"
);
const group = (await res.json()) as Group; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/groups/27"
)
group = res.json() Response
{
"id": 27,
"name": "Bright Thinkers",
"slug": "bright-thinkers",
"description": "Vociferor placeat autem aequitas maiores appello.",
"memberCount": 10,
"isPublic": false,
"ownerUserId": 136,
"createdAt": "2025-08-04T06:37:26.034Z",
"updatedAt": "2026-01-26T07:52:17.968Z"
}