example-data.com
Menu
Browse docs and collections

Overview

groups / #51

Hidden Thinkers

Size
13 members

Corrupti omnis annus soluta ambulo antiquus adaugeo animi.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 51,
  "name": "Hidden Thinkers",
  "slug": "hidden-thinkers",
  "description": "Corrupti omnis annus soluta ambulo antiquus adaugeo animi.",
  "memberCount": 13,
  "isPublic": true,
  "ownerUserId": 208,
  "createdAt": "2024-12-08T13:05:42.636Z",
  "updatedAt": "2025-06-21T22:26:58.650Z"
}