Dynamic Hackers
- Size
- 11 members
Tracto adficio aspernatur centum atqui atqui angelus substantia.
Overview
groups / #11
Tracto adficio aspernatur centum atqui atqui angelus substantia.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/groups/11" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/groups/11" ); 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/11"
);
const group = (await res.json()) as Group; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/groups/11"
)
group = res.json() Response
{
"id": 11,
"name": "Dynamic Hackers",
"slug": "dynamic-hackers",
"description": "Tracto adficio aspernatur centum atqui atqui angelus substantia.",
"memberCount": 11,
"isPublic": false,
"ownerUserId": 155,
"createdAt": "2025-08-10T04:49:44.001Z",
"updatedAt": "2026-03-14T16:45:50.876Z"
}