Infrastructure
- orgId
-
Prohaska Inc
- name
- Infrastructure
- slug
- prohaska-inc-infrastructure
- description
- Derideo amaritudo pel venio pel aliquam cetera umerus uter.
- memberCount
- 17
- createdAt
- updatedAt
Overview
teams / #79
Request
curl example
curl -sS \ "https://example-data.com/api/v1/teams/79" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/teams/79" ); 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/79"
);
const team = (await res.json()) as Team; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/teams/79"
)
team = res.json() Response
{
"id": 79,
"orgId": 24,
"name": "Infrastructure",
"slug": "prohaska-inc-infrastructure",
"description": "Derideo amaritudo pel venio pel aliquam cetera umerus uter.",
"memberCount": 17,
"createdAt": "2025-01-03T06:17:22.336Z",
"updatedAt": "2025-09-17T20:51:51.910Z"
}