example-data.com

teams / #86

orgId
Thompson Group
name
Product
slug
thompson-group-product
description
Repellendus sponte bestia desidero similique debeo.
memberCount
20
createdAt
updatedAt

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/teams/86" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/teams/86"
);
const team = await res.json();
import type { Team } from "https://example-data.com/types/teams.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/teams/86"
);
const team = (await res.json()) as Team;
import requests

res = requests.get(
    "https://example-data.com/api/v1/teams/86"
)
team = res.json()
{
  "id": 86,
  "orgId": 28,
  "name": "Product",
  "slug": "thompson-group-product",
  "description": "Repellendus sponte bestia desidero similique debeo.",
  "memberCount": 20,
  "createdAt": "2026-01-22T11:31:20.554Z",
  "updatedAt": "2026-02-27T16:47:45.839Z"
}
Draftbit