example-data.com

teams / #66

orgId
Toy and Sons
name
Growth
slug
toy-and-sons-growth
description
Vesper crux molestias paens ventosus sapiente cupio compello.
memberCount
20
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/teams/66"
)
team = res.json()
{
  "id": 66,
  "orgId": 21,
  "name": "Growth",
  "slug": "toy-and-sons-growth",
  "description": "Vesper crux molestias paens ventosus sapiente cupio compello.",
  "memberCount": 20,
  "createdAt": "2025-09-03T03:27:31.499Z",
  "updatedAt": "2026-02-17T09:01:23.630Z"
}
Draftbit