example-data.com

teams / #13

orgId
Funk, Renner and Grady
name
Design
slug
funk-renner-and-grady-design
description
Thema cibo deputo suus.
memberCount
7
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/teams/13"
)
team = res.json()
{
  "id": 13,
  "orgId": 4,
  "name": "Design",
  "slug": "funk-renner-and-grady-design",
  "description": "Thema cibo deputo suus.",
  "memberCount": 7,
  "createdAt": "2026-05-21T11:02:38.224Z",
  "updatedAt": "2026-05-21T22:03:50.369Z"
}
Draftbit