example-data.com

groups / #34

Rising Explorers

Size
15 members

Terga arguo triduana.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/groups/34"
)
group = res.json()
{
  "id": 34,
  "name": "Rising Explorers",
  "slug": "rising-explorers",
  "description": "Terga arguo triduana.",
  "memberCount": 15,
  "isPublic": true,
  "ownerUserId": 160,
  "createdAt": "2026-03-29T09:46:44.386Z",
  "updatedAt": "2026-04-18T18:13:10.334Z"
}
Draftbit