example-data.com

groups / #61

Local Makers

Size
12 members

Abutor caecus cibo assentator textus defungo adfero.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/groups/61"
)
group = res.json()
{
  "id": 61,
  "name": "Local Makers",
  "slug": "local-makers",
  "description": "Abutor caecus cibo assentator textus defungo adfero.",
  "memberCount": 12,
  "isPublic": true,
  "ownerUserId": 108,
  "createdAt": "2024-12-11T11:07:05.019Z",
  "updatedAt": "2025-08-02T15:13:47.313Z"
}
Draftbit