example-data.com

groups / #11

Dynamic Hackers

Size
11 members

Tracto adficio aspernatur centum atqui atqui angelus substantia.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/groups/11"
)
group = res.json()
{
  "id": 11,
  "name": "Dynamic Hackers",
  "slug": "dynamic-hackers",
  "description": "Tracto adficio aspernatur centum atqui atqui angelus substantia.",
  "memberCount": 11,
  "isPublic": false,
  "ownerUserId": 155,
  "createdAt": "2025-08-10T04:49:44.001Z",
  "updatedAt": "2026-03-14T16:45:50.876Z"
}
Draftbit