Data
- orgId
-
Swift - Lakin
- name
- Data
- slug
- swift-lakin-data
- description
- Odio comedo tibi triumphus pecus.
- memberCount
- 17
- createdAt
- updatedAt
Overview
teams / #32
Request
curl example
curl -sS \ "https://example-data.com/api/v1/teams/32" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/teams/32" ); 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/32"
);
const team = (await res.json()) as Team; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/teams/32"
)
team = res.json() Response
{
"id": 32,
"orgId": 12,
"name": "Data",
"slug": "swift-lakin-data",
"description": "Odio comedo tibi triumphus pecus.",
"memberCount": 17,
"createdAt": "2025-01-18T19:59:08.712Z",
"updatedAt": "2025-11-10T00:30:48.540Z"
}