example-data.com
Menu
Browse docs and collections

Overview

groups / #35

Dynamic Artists

Size
7 members

Cenaculum decet umbra occaecati desino cupio voluptate vesica callide.

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/groups/35" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/groups/35"
);
const group = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/groups.d.ts https://example-data.com/types/groups.d.ts
import type { Group } from "./types/groups";

const res = await fetch(
  "https://example-data.com/api/v1/groups/35"
);
const group = (await res.json()) as Group;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/groups/35"
)
group = res.json()

Response

{
  "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"
}