Stellar Hackers
- Size
- 6 members
Ancilla cum audeo exercitationem talus eligendi asperiores.
Overview
groups / #77
Ancilla cum audeo exercitationem talus eligendi asperiores.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/groups/77" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/groups/77" ); 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/77"
);
const group = (await res.json()) as Group; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/groups/77"
)
group = res.json() Response
{
"id": 77,
"name": "Stellar Hackers",
"slug": "stellar-hackers",
"description": "Ancilla cum audeo exercitationem talus eligendi asperiores.",
"memberCount": 6,
"isPublic": true,
"ownerUserId": 58,
"createdAt": "2025-11-04T12:30:04.116Z",
"updatedAt": "2026-02-20T22:08:46.538Z"
}