example-data.com

groups / #19

Curious Designers

Size
6 members

Cicuta vilicus tremo vetus templum torrens causa.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/groups/19"
)
group = res.json()
{
  "id": 19,
  "name": "Curious Designers",
  "slug": "curious-designers",
  "description": "Cicuta vilicus tremo vetus templum torrens causa.",
  "memberCount": 6,
  "isPublic": true,
  "ownerUserId": 123,
  "createdAt": "2024-05-29T21:27:31.367Z",
  "updatedAt": "2025-12-31T05:52:34.079Z"
}
Draftbit