example-data.com

groups / #4

Digital Hackers

Size
14 members

Neque cognatus repellat facere corporis tabula adopto amo.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/groups/4"
)
group = res.json()
{
  "id": 4,
  "name": "Digital Hackers",
  "slug": "digital-hackers",
  "description": "Neque cognatus repellat facere corporis tabula adopto amo.",
  "memberCount": 14,
  "isPublic": true,
  "ownerUserId": 149,
  "createdAt": "2025-09-16T04:14:07.748Z",
  "updatedAt": "2026-02-17T04:53:38.156Z"
}
Draftbit