example-data.com

teams / #42

orgId
Lowe and Sons
name
Design
slug
lowe-and-sons-design
description
Viriliter iure coniuratio colo sunt casso deleniti sustineo corona.
memberCount
26
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/teams/42"
)
team = res.json()
{
  "id": 42,
  "orgId": 15,
  "name": "Design",
  "slug": "lowe-and-sons-design",
  "description": "Viriliter iure coniuratio colo sunt casso deleniti sustineo corona.",
  "memberCount": 26,
  "createdAt": "2026-02-10T01:28:59.269Z",
  "updatedAt": "2026-05-10T09:58:24.026Z"
}
Draftbit