Dynamic Readers
- Size
- 6 members
Una tyrannus crebro denego compono.
groups / #65
Una tyrannus crebro denego compono.
curl -sS \
"https://example-data.com/api/v1/groups/65" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/groups/65"
);
const group = await res.json();import type { Group } from "https://example-data.com/types/groups.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/groups/65"
);
const group = (await res.json()) as Group;import requests
res = requests.get(
"https://example-data.com/api/v1/groups/65"
)
group = res.json() {
"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"
}