example-data.com

groups / #22

Elite Creators

Size
12 members

Molestiae strenuus crur substantia.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/groups/22"
)
group = res.json()
{
  "id": 22,
  "name": "Elite Creators",
  "slug": "elite-creators",
  "description": "Molestiae strenuus crur substantia.",
  "memberCount": 12,
  "isPublic": true,
  "ownerUserId": 233,
  "createdAt": "2026-02-14T21:30:24.076Z",
  "updatedAt": "2026-05-05T09:01:21.647Z"
}
Draftbit