example-data.com
Menu
Browse docs and collections

Overview

groups / #60

Creative Designers

Size
14 members

Succurro victoria substantia caput velociter amitto.

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/groups/60"
);
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/60"
);
const group = (await res.json()) as Group;

Python example

import requests

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

Response

{
  "id": 60,
  "name": "Creative Designers",
  "slug": "creative-designers",
  "description": "Succurro victoria substantia caput velociter amitto.",
  "memberCount": 14,
  "isPublic": true,
  "ownerUserId": 171,
  "createdAt": "2026-01-09T14:18:42.094Z",
  "updatedAt": "2026-02-11T07:57:17.868Z"
}