example-data.com

groups / #54

Local Foodies

Size
11 members

Conicio aeternus fugiat verbera.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/groups/54"
)
group = res.json()
{
  "id": 54,
  "name": "Local Foodies",
  "slug": "local-foodies",
  "description": "Conicio aeternus fugiat verbera.",
  "memberCount": 11,
  "isPublic": true,
  "ownerUserId": 49,
  "createdAt": "2026-03-03T05:42:24.542Z",
  "updatedAt": "2026-04-22T16:37:46.521Z"
}
Draftbit