example-data.com

teams / #72

orgId
Prohaska - Wiza
name
Infrastructure
slug
prohaska-wiza-infrastructure
description
Subseco odio iure crapula culpa certus maxime custodia.
memberCount
9
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/teams/72"
)
team = res.json()
{
  "id": 72,
  "orgId": 23,
  "name": "Infrastructure",
  "slug": "prohaska-wiza-infrastructure",
  "description": "Subseco odio iure crapula culpa certus maxime custodia.",
  "memberCount": 9,
  "createdAt": "2026-04-24T00:28:39.771Z",
  "updatedAt": "2026-05-21T00:35:50.660Z"
}
Draftbit