Data
- orgId
-
Schimmel, Jones and Lind
- name
- Data
- slug
- schimmel-jones-and-lind-data
- description
- Torrens dolore thermae voro spes.
- memberCount
- 10
- createdAt
- updatedAt
Overview
teams / #18
Request
curl example
curl -sS \ "https://example-data.com/api/v1/teams/18" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/teams/18" ); 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/18"
);
const team = (await res.json()) as Team; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/teams/18"
)
team = res.json() Response
{
"id": 18,
"orgId": 7,
"name": "Data",
"slug": "schimmel-jones-and-lind-data",
"description": "Torrens dolore thermae voro spes.",
"memberCount": 10,
"createdAt": "2026-04-20T03:19:39.269Z",
"updatedAt": "2026-04-30T18:17:10.540Z"
}