Stellar Minds
- Size
- 13 members
Illum absorbeo terga textor uter benigne.
Overview
groups / #26
Illum absorbeo terga textor uter benigne.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/groups/26" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/groups/26" ); 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/26"
);
const group = (await res.json()) as Group; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/groups/26"
)
group = res.json() Response
{
"id": 26,
"name": "Stellar Minds",
"slug": "stellar-minds",
"description": "Illum absorbeo terga textor uter benigne.",
"memberCount": 13,
"isPublic": true,
"ownerUserId": 201,
"createdAt": "2025-09-14T01:37:41.822Z",
"updatedAt": "2026-05-15T02:10:16.411Z"
}