Rising Creators
- Size
- 10 members
Capillus aer depulso thymum.
Overview
groups / #18
Capillus aer depulso thymum.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/groups/18" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/groups/18" ); 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/18"
);
const group = (await res.json()) as Group; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/groups/18"
)
group = res.json() Response
{
"id": 18,
"name": "Rising Creators",
"slug": "rising-creators",
"description": "Capillus aer depulso thymum.",
"memberCount": 10,
"isPublic": true,
"ownerUserId": 100,
"createdAt": "2026-03-03T00:19:37.997Z",
"updatedAt": "2026-05-11T23:19:56.050Z"
}