example-data.com

teams / #95

orgId
Gleason - Kertzmann
name
Platform
slug
gleason-kertzmann-platform
description
Sortitus bos super agnitio.
memberCount
27
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/teams/95"
)
team = res.json()
{
  "id": 95,
  "orgId": 30,
  "name": "Platform",
  "slug": "gleason-kertzmann-platform",
  "description": "Sortitus bos super agnitio.",
  "memberCount": 27,
  "createdAt": "2025-04-11T10:21:55.217Z",
  "updatedAt": "2025-05-23T03:05:24.115Z"
}
Draftbit