example-data.com

teams / #89

orgId
Corkery - Wunsch
name
Research
slug
corkery-wunsch-research
description
Desino clarus angulus.
memberCount
15
createdAt
updatedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/teams/89" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/teams/89"
);
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/89"
);
const team = (await res.json()) as Team;
import requests

res = requests.get(
    "https://example-data.com/api/v1/teams/89"
)
team = res.json()
{
  "id": 89,
  "orgId": 29,
  "name": "Research",
  "slug": "corkery-wunsch-research",
  "description": "Desino clarus angulus.",
  "memberCount": 15,
  "createdAt": "2025-06-11T02:25:08.241Z",
  "updatedAt": "2025-08-17T06:53:03.102Z"
}
Draftbit