example-data.com

teams / #91

orgId
Corkery - Wunsch
name
Marketing
slug
corkery-wunsch-marketing
description
Astrum ulciscor amor viduo cotidie cedo.
memberCount
5
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/teams/91"
)
team = res.json()
{
  "id": 91,
  "orgId": 29,
  "name": "Marketing",
  "slug": "corkery-wunsch-marketing",
  "description": "Astrum ulciscor amor viduo cotidie cedo.",
  "memberCount": 5,
  "createdAt": "2025-07-09T15:01:49.349Z",
  "updatedAt": "2026-04-29T21:59:59.248Z"
}
Draftbit