Product
- orgId
-
Johns, Reinger and Toy
- name
- Product
- slug
- johns-reinger-and-toy-product
- description
- Aperiam tumultus bibo decretum eius depulso paulatim corporis vulticulus.
- memberCount
- 10
- createdAt
- updatedAt
Overview
teams / #57
Request
curl example
curl -sS \ "https://example-data.com/api/v1/teams/57" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/teams/57" ); 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/57"
);
const team = (await res.json()) as Team; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/teams/57"
)
team = res.json() Response
{
"id": 57,
"orgId": 19,
"name": "Product",
"slug": "johns-reinger-and-toy-product",
"description": "Aperiam tumultus bibo decretum eius depulso paulatim corporis vulticulus.",
"memberCount": 10,
"createdAt": "2025-07-09T23:28:31.331Z",
"updatedAt": "2025-08-10T06:56:51.126Z"
}