example-data.com

teams / #45

orgId
Lowe and Sons
name
Growth
slug
lowe-and-sons-growth
description
Conqueror bibo subito quod umbra una.
memberCount
3
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/teams/45"
)
team = res.json()
{
  "id": 45,
  "orgId": 15,
  "name": "Growth",
  "slug": "lowe-and-sons-growth",
  "description": "Conqueror bibo subito quod umbra una.",
  "memberCount": 3,
  "createdAt": "2025-06-23T05:39:59.447Z",
  "updatedAt": "2026-04-17T18:54:26.520Z"
}
Draftbit