example-data.com

groups / #18

Rising Creators

Size
10 members

Capillus aer depulso thymum.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/groups/18"
)
group = res.json()
{
  "id": 18,
  "name": "Rising Creators",
  "slug": "rising-creators",
  "description": "Capillus aer depulso thymum.",
  "memberCount": 10,
  "isPublic": true,
  "ownerUserId": 100,
  "createdAt": "2026-03-03T00:19:37.997Z",
  "updatedAt": "2026-05-11T23:19:56.050Z"
}
Draftbit