example-data.com

groups / #26

Stellar Minds

Size
13 members

Illum absorbeo terga textor uter benigne.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/groups/26"
)
group = res.json()
{
  "id": 26,
  "name": "Stellar Minds",
  "slug": "stellar-minds",
  "description": "Illum absorbeo terga textor uter benigne.",
  "memberCount": 13,
  "isPublic": true,
  "ownerUserId": 201,
  "createdAt": "2025-09-14T01:37:41.822Z",
  "updatedAt": "2026-05-15T02:10:16.411Z"
}
Draftbit