Digital Hackers
- Size
- 14 members
Neque cognatus repellat facere corporis tabula adopto amo.
Overview
groups / #4
Neque cognatus repellat facere corporis tabula adopto amo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/groups/4" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/groups/4" ); 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/4"
);
const group = (await res.json()) as Group; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/groups/4"
)
group = res.json() Response
{
"id": 4,
"name": "Digital Hackers",
"slug": "digital-hackers",
"description": "Neque cognatus repellat facere corporis tabula adopto amo.",
"memberCount": 14,
"isPublic": true,
"ownerUserId": 149,
"createdAt": "2025-09-16T04:14:07.748Z",
"updatedAt": "2026-02-17T04:53:38.156Z"
}