example-data.com

teams / #76

orgId
Prohaska - Wiza
name
QA
slug
prohaska-wiza-qa
description
Asporto demergo thesaurus deputo patior cohaero comprehendo creo soluta.
memberCount
20
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/teams/76"
)
team = res.json()
{
  "id": 76,
  "orgId": 23,
  "name": "QA",
  "slug": "prohaska-wiza-qa",
  "description": "Asporto demergo thesaurus deputo patior cohaero comprehendo creo soluta.",
  "memberCount": 20,
  "createdAt": "2025-12-30T06:14:40.905Z",
  "updatedAt": "2026-03-03T04:51:03.633Z"
}
Draftbit