Platform
- orgId
-
Prohaska Inc
- name
- Platform
- slug
- prohaska-inc-platform
- description
- Umbra desidero cohaero valetudo veritas bos.
- memberCount
- 17
- createdAt
- updatedAt
Overview
teams / #77
Request
curl example
curl -sS \ "https://example-data.com/api/v1/teams/77" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/teams/77" ); 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/77"
);
const team = (await res.json()) as Team; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/teams/77"
)
team = res.json() Response
{
"id": 77,
"orgId": 24,
"name": "Platform",
"slug": "prohaska-inc-platform",
"description": "Umbra desidero cohaero valetudo veritas bos.",
"memberCount": 17,
"createdAt": "2025-01-04T08:46:03.360Z",
"updatedAt": "2025-10-23T22:41:44.423Z"
}