Legal
- orgId
-
Mayert LLC
- name
- Legal
- slug
- mayert-llc-legal
- description
- Tergiversatio dolore caterva atqui vulariter consectetur ascisco amor.
- memberCount
- 8
- createdAt
- updatedAt
Overview
teams / #8
Request
curl example
curl -sS \ "https://example-data.com/api/v1/teams/8" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/teams/8" ); 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/8"
);
const team = (await res.json()) as Team; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/teams/8"
)
team = res.json() Response
{
"id": 8,
"orgId": 3,
"name": "Legal",
"slug": "mayert-llc-legal",
"description": "Tergiversatio dolore caterva atqui vulariter consectetur ascisco amor.",
"memberCount": 8,
"createdAt": "2025-12-08T03:29:54.192Z",
"updatedAt": "2026-05-09T05:58:47.284Z"
}