example-data.com

groups / #20

Creative Runners

Size
9 members

Decerno thymbra velociter denuo uterque.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/groups/20"
)
group = res.json()
{
  "id": 20,
  "name": "Creative Runners",
  "slug": "creative-runners",
  "description": "Decerno thymbra velociter denuo uterque.",
  "memberCount": 9,
  "isPublic": true,
  "ownerUserId": 94,
  "createdAt": "2025-05-13T12:19:59.454Z",
  "updatedAt": "2025-08-20T06:21:54.998Z"
}
Draftbit