Bright Designers
- Size
- 5 members
Videlicet veritas sursum timor aggredior cunae carcer strues surculus.
Overview
groups / #12
Videlicet veritas sursum timor aggredior cunae carcer strues surculus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/groups/12" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/groups/12" ); 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/12"
);
const group = (await res.json()) as Group; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/groups/12"
)
group = res.json() Response
{
"id": 12,
"name": "Bright Designers",
"slug": "bright-designers",
"description": "Videlicet veritas sursum timor aggredior cunae carcer strues surculus.",
"memberCount": 5,
"isPublic": true,
"ownerUserId": 131,
"createdAt": "2024-06-25T21:45:33.728Z",
"updatedAt": "2026-05-17T10:59:47.783Z"
}