Operations
- orgId
-
Funk, Renner and Grady
- name
- Operations
- slug
- funk-renner-and-grady-operations
- description
- Vix itaque conduco culpo pariatur cito.
- memberCount
- 18
- createdAt
- updatedAt
Overview
teams / #12
Request
curl example
curl -sS \ "https://example-data.com/api/v1/teams/12" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/teams/12" ); 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/12"
);
const team = (await res.json()) as Team; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/teams/12"
)
team = res.json() Response
{
"id": 12,
"orgId": 4,
"name": "Operations",
"slug": "funk-renner-and-grady-operations",
"description": "Vix itaque conduco culpo pariatur cito.",
"memberCount": 18,
"createdAt": "2025-07-07T05:21:15.983Z",
"updatedAt": "2025-12-21T00:42:59.719Z"
}