example-data.com

teams / #2

orgId
Lakin Group
name
Support
slug
lakin-group-support
description
Deporto accusantium comes advoco.
memberCount
13
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/teams/2"
)
team = res.json()
{
  "id": 2,
  "orgId": 1,
  "name": "Support",
  "slug": "lakin-group-support",
  "description": "Deporto accusantium comes advoco.",
  "memberCount": 13,
  "createdAt": "2025-12-27T07:57:15.047Z",
  "updatedAt": "2026-01-13T23:13:28.371Z"
}
Draftbit