Growth
- orgId
-
Pouros, Nikolaus and Donnelly
- name
- Growth
- slug
- pouros-nikolaus-and-donnelly-growth
- description
- Caritas corrupti spero complectus.
- memberCount
- 16
- createdAt
- updatedAt
Overview
teams / #48
Request
curl example
curl -sS \ "https://example-data.com/api/v1/teams/48" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/teams/48" ); 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/48"
);
const team = (await res.json()) as Team; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/teams/48"
)
team = res.json() Response
{
"id": 48,
"orgId": 16,
"name": "Growth",
"slug": "pouros-nikolaus-and-donnelly-growth",
"description": "Caritas corrupti spero complectus.",
"memberCount": 16,
"createdAt": "2025-11-21T07:57:14.969Z",
"updatedAt": "2025-12-23T00:09:42.444Z"
}