example-data.com

groups / #70

Curious Gems

Size
9 members

Ater acsi quas balbus molestiae viduo tepesco viscus cribro tracto.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/groups/70"
)
group = res.json()
{
  "id": 70,
  "name": "Curious Gems",
  "slug": "curious-gems",
  "description": "Ater acsi quas balbus molestiae viduo tepesco viscus cribro tracto.",
  "memberCount": 9,
  "isPublic": true,
  "ownerUserId": 156,
  "createdAt": "2025-08-22T22:38:48.771Z",
  "updatedAt": "2025-09-20T13:18:38.845Z"
}
Draftbit