example-data.com

teams / #44

orgId
Lowe and Sons
name
Engineering
slug
lowe-and-sons-engineering
description
Cimentarius celer turbo.
memberCount
8
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/teams/44"
)
team = res.json()
{
  "id": 44,
  "orgId": 15,
  "name": "Engineering",
  "slug": "lowe-and-sons-engineering",
  "description": "Cimentarius celer turbo.",
  "memberCount": 8,
  "createdAt": "2025-11-04T15:29:20.535Z",
  "updatedAt": "2026-02-11T06:01:10.793Z"
}
Draftbit