example-data.com

groups / #35

Dynamic Artists

Size
7 members

Cenaculum decet umbra occaecati desino cupio voluptate vesica callide.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/groups/35"
)
group = res.json()
{
  "id": 35,
  "name": "Dynamic Artists",
  "slug": "dynamic-artists",
  "description": "Cenaculum decet umbra occaecati desino cupio voluptate vesica callide.",
  "memberCount": 7,
  "isPublic": true,
  "ownerUserId": 55,
  "createdAt": "2024-08-01T06:46:49.300Z",
  "updatedAt": "2025-02-19T23:21:11.465Z"
}
Draftbit