Infrastructure
- orgId
-
Ratke - Kub
- name
- Infrastructure
- slug
- ratke-kub-infrastructure
- description
- Commodo tersus pecco tracto quisquam victoria umbra clementia peior.
- memberCount
- 10
- createdAt
- updatedAt
Overview
teams / #53
Request
curl example
curl -sS \ "https://example-data.com/api/v1/teams/53" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/teams/53" ); const team = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/teams.d.ts https://example-data.com/types/teams.d.ts
import type { Team } from "./types/teams";
const res = await fetch(
"https://example-data.com/api/v1/teams/53"
);
const team = (await res.json()) as Team; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/teams/53"
)
team = res.json() Response
{
"id": 53,
"orgId": 18,
"name": "Infrastructure",
"slug": "ratke-kub-infrastructure",
"description": "Commodo tersus pecco tracto quisquam victoria umbra clementia peior.",
"memberCount": 10,
"createdAt": "2026-04-05T18:50:44.564Z",
"updatedAt": "2026-05-05T15:04:05.705Z"
}