Design
- orgId
-
Johns, Reinger and Toy
- name
- Design
- slug
- johns-reinger-and-toy-design
- description
- Aestas sophismata delibero patruus totam.
- memberCount
- 9
- createdAt
- updatedAt
Overview
teams / #59
Request
curl example
curl -sS \ "https://example-data.com/api/v1/teams/59" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/teams/59" ); 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/59"
);
const team = (await res.json()) as Team; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/teams/59"
)
team = res.json() Response
{
"id": 59,
"orgId": 19,
"name": "Design",
"slug": "johns-reinger-and-toy-design",
"description": "Aestas sophismata delibero patruus totam.",
"memberCount": 9,
"createdAt": "2024-11-03T22:15:37.377Z",
"updatedAt": "2025-10-23T23:54:25.003Z"
}