Stellar Hackers
- Size
- 6 members
Ancilla cum audeo exercitationem talus eligendi asperiores.
groups / #77
Ancilla cum audeo exercitationem talus eligendi asperiores.
curl -sS \
"https://example-data.com/api/v1/groups/77" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/groups/77"
);
const group = await res.json();import type { Group } from "https://example-data.com/types/groups.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/groups/77"
);
const group = (await res.json()) as Group;import requests
res = requests.get(
"https://example-data.com/api/v1/groups/77"
)
group = res.json() {
"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"
}