example-data.com

groups / #32

Stellar Gems

Size
12 members

Minima talis quod sulum dolor.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/groups/32"
)
group = res.json()
{
  "id": 32,
  "name": "Stellar Gems",
  "slug": "stellar-gems",
  "description": "Minima talis quod sulum dolor.",
  "memberCount": 12,
  "isPublic": true,
  "ownerUserId": 92,
  "createdAt": "2024-11-06T18:58:13.504Z",
  "updatedAt": "2025-07-17T21:33:21.620Z"
}
Draftbit