example-data.com

groups / #14

Modern Designers

Size
5 members

Creator audeo cotidie sublime carmen absum.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/groups/14"
)
group = res.json()
{
  "id": 14,
  "name": "Modern Designers",
  "slug": "modern-designers",
  "description": "Creator audeo cotidie sublime carmen absum.",
  "memberCount": 5,
  "isPublic": true,
  "ownerUserId": 126,
  "createdAt": "2025-08-11T02:00:31.382Z",
  "updatedAt": "2026-02-21T19:00:25.821Z"
}
Draftbit