Design
- orgId
-
Swift - Lakin
- name
- Design
- slug
- swift-lakin-design
- description
- Sufficio cras territo vesper usitas subiungo aperiam solum.
- memberCount
- 15
- createdAt
- updatedAt
Overview
teams / #33
Request
curl example
curl -sS \ "https://example-data.com/api/v1/teams/33" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/teams/33" ); 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/33"
);
const team = (await res.json()) as Team; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/teams/33"
)
team = res.json() Response
{
"id": 33,
"orgId": 12,
"name": "Design",
"slug": "swift-lakin-design",
"description": "Sufficio cras territo vesper usitas subiungo aperiam solum.",
"memberCount": 15,
"createdAt": "2026-01-19T19:33:07.464Z",
"updatedAt": "2026-05-02T15:01:15.939Z"
}