example-data.com
Menu
Browse docs and collections

Overview

groups / #70

Curious Gems

Size
9 members

Ater acsi quas balbus molestiae viduo tepesco viscus cribro tracto.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 70,
  "name": "Curious Gems",
  "slug": "curious-gems",
  "description": "Ater acsi quas balbus molestiae viduo tepesco viscus cribro tracto.",
  "memberCount": 9,
  "isPublic": true,
  "ownerUserId": 156,
  "createdAt": "2025-08-22T22:38:48.771Z",
  "updatedAt": "2025-09-20T13:18:38.845Z"
}