Dynamic Readers
- Size
- 6 members
Una tyrannus crebro denego compono.
Overview
groups / #65
Una tyrannus crebro denego compono.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/groups/65" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/groups/65" ); 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/65"
);
const group = (await res.json()) as Group; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/groups/65"
)
group = res.json() Response
{
"id": 65,
"name": "Dynamic Readers",
"slug": "dynamic-readers",
"description": "Una tyrannus crebro denego compono.",
"memberCount": 6,
"isPublic": true,
"ownerUserId": 250,
"createdAt": "2025-10-13T14:48:45.075Z",
"updatedAt": "2026-02-12T08:41:59.205Z"
}