example-data.com

teams / #11

orgId
Mayert LLC
name
Design
slug
mayert-llc-design
description
Armarium tollo praesentium annus.
memberCount
10
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/teams/11"
)
team = res.json()
{
  "id": 11,
  "orgId": 3,
  "name": "Design",
  "slug": "mayert-llc-design",
  "description": "Armarium tollo praesentium annus.",
  "memberCount": 10,
  "createdAt": "2025-07-09T09:12:18.262Z",
  "updatedAt": "2025-11-10T12:31:38.755Z"
}
Draftbit