example-data.com
Menu
Browse docs and collections

Overview

groups / #19

Curious Designers

Size
6 members

Cicuta vilicus tremo vetus templum torrens causa.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 19,
  "name": "Curious Designers",
  "slug": "curious-designers",
  "description": "Cicuta vilicus tremo vetus templum torrens causa.",
  "memberCount": 6,
  "isPublic": true,
  "ownerUserId": 123,
  "createdAt": "2024-05-29T21:27:31.367Z",
  "updatedAt": "2025-12-31T05:52:34.079Z"
}