Local Foodies
- Size
- 11 members
Conicio aeternus fugiat verbera.
Overview
groups / #54
Conicio aeternus fugiat verbera.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/groups/54" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/groups/54" ); const group = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/groups.d.ts https://example-data.com/types/groups.d.ts
import type { Group } from "./types/groups";
const res = await fetch(
"https://example-data.com/api/v1/groups/54"
);
const group = (await res.json()) as Group; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/groups/54"
)
group = res.json() Response
{
"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"
}