example-data.com

teams / #21

orgId
Brekke - Muller
name
Data
slug
brekke-muller-data
description
Fugit terminatio absum aequitas aegre mollitia tabesco ducimus cohors.
memberCount
13
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/teams/21"
)
team = res.json()
{
  "id": 21,
  "orgId": 8,
  "name": "Data",
  "slug": "brekke-muller-data",
  "description": "Fugit terminatio absum aequitas aegre mollitia tabesco ducimus cohors.",
  "memberCount": 13,
  "createdAt": "2026-01-06T05:15:33.921Z",
  "updatedAt": "2026-04-30T20:34:21.462Z"
}
Draftbit