Product
- orgId
-
Cormier, Rogahn and Bogisich
- name
- Product
- slug
- cormier-rogahn-and-bogisich-product
- description
- Tendo subnecto vacuus.
- memberCount
- 20
- createdAt
- updatedAt
Overview
teams / #83
Request
curl example
curl -sS \ "https://example-data.com/api/v1/teams/83" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/teams/83" ); 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/83"
);
const team = (await res.json()) as Team; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/teams/83"
)
team = res.json() Response
{
"id": 83,
"orgId": 27,
"name": "Product",
"slug": "cormier-rogahn-and-bogisich-product",
"description": "Tendo subnecto vacuus.",
"memberCount": 20,
"createdAt": "2025-02-10T13:41:03.590Z",
"updatedAt": "2025-04-23T11:22:16.715Z"
}