teams / #39
- orgId
-
Reichel - Kling
- name
- Research
- slug
- reichel-kling-research
- description
- Sodalitas ulterius vesica.
- memberCount
- 28
- createdAt
- updatedAt
Component variants
Small
teams/39 Related
References
curl -sS \
"https://example-data.com/api/v1/teams/39" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/teams/39"
);
const team = await res.json();import type { Team } from "https://example-data.com/types/teams.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/teams/39"
);
const team = (await res.json()) as Team;import requests
res = requests.get(
"https://example-data.com/api/v1/teams/39"
)
team = res.json() {
"id": 39,
"orgId": 14,
"name": "Research",
"slug": "reichel-kling-research",
"description": "Sodalitas ulterius vesica.",
"memberCount": 28,
"createdAt": "2025-09-28T03:56:26.240Z",
"updatedAt": "2026-05-20T22:05:31.438Z"
}