Growth
- orgId
-
Lowe and Sons
- name
- Growth
- slug
- lowe-and-sons-growth
- description
- Conqueror bibo subito quod umbra una.
- memberCount
- 3
- createdAt
- updatedAt
Overview
teams / #45
Request
curl example
curl -sS \ "https://example-data.com/api/v1/teams/45" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/teams/45" ); 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/45"
);
const team = (await res.json()) as Team; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/teams/45"
)
team = res.json() Response
{
"id": 45,
"orgId": 15,
"name": "Growth",
"slug": "lowe-and-sons-growth",
"description": "Conqueror bibo subito quod umbra una.",
"memberCount": 3,
"createdAt": "2025-06-23T05:39:59.447Z",
"updatedAt": "2026-04-17T18:54:26.520Z"
}