example-data.com

groups / #80

Rising Runners

Size
5 members

Commemoro vicinus aggredior provident appello deleo quasi repellat celo vilitas.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/groups/80"
)
group = res.json()
{
  "id": 80,
  "name": "Rising Runners",
  "slug": "rising-runners",
  "description": "Commemoro vicinus aggredior provident appello deleo quasi repellat celo vilitas.",
  "memberCount": 5,
  "isPublic": true,
  "ownerUserId": 154,
  "createdAt": "2025-09-03T06:46:48.001Z",
  "updatedAt": "2026-03-24T04:49:25.746Z"
}
Draftbit