example-data.com
Menu
Browse docs and collections

Overview

teams / #85

Analytics

orgId
Thompson Group
name
Analytics
slug
thompson-group-analytics
description
Excepturi hic caterva summa comedo.
memberCount
24
createdAt
updatedAt

Component variants

Related

References

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/teams/85" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/teams/85"
);
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/85"
);
const team = (await res.json()) as Team;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/teams/85"
)
team = res.json()

Response

{
  "id": 85,
  "orgId": 28,
  "name": "Analytics",
  "slug": "thompson-group-analytics",
  "description": "Excepturi hic caterva summa comedo.",
  "memberCount": 24,
  "createdAt": "2025-03-19T04:47:48.958Z",
  "updatedAt": "2026-05-16T20:32:36.040Z"
}