example-data.com

groups / #24

Bright Makers

Size
13 members

Dens argumentum desidero tamisium arx copiose tamdiu.

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/groups/24" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/groups/24"
);
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/24"
);
const group = (await res.json()) as Group;
import requests

res = requests.get(
    "https://example-data.com/api/v1/groups/24"
)
group = res.json()
{
  "id": 24,
  "name": "Bright Makers",
  "slug": "bright-makers",
  "description": "Dens argumentum desidero tamisium arx copiose tamdiu.",
  "memberCount": 13,
  "isPublic": true,
  "ownerUserId": 63,
  "createdAt": "2025-08-20T18:02:23.484Z",
  "updatedAt": "2026-02-06T14:11:52.403Z"
}
Draftbit