example-data.com
Menu
Browse docs and collections

Overview

teams / #82

Support

orgId
Altenwerth - Corkery
name
Support
slug
altenwerth-corkery-support
description
Compono beatae itaque valens hic tepidus concedo temperantia.
memberCount
19
createdAt
updatedAt

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/teams/82" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/teams/82"
);
const team = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/teams.d.ts https://example-data.com/types/teams.d.ts
import type { Team } from "./types/teams";

const res = await fetch(
  "https://example-data.com/api/v1/teams/82"
);
const team = (await res.json()) as Team;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/teams/82"
)
team = res.json()

Response

{
  "id": 82,
  "orgId": 26,
  "name": "Support",
  "slug": "altenwerth-corkery-support",
  "description": "Compono beatae itaque valens hic tepidus concedo temperantia.",
  "memberCount": 19,
  "createdAt": "2025-08-31T18:46:03.500Z",
  "updatedAt": "2025-12-10T15:44:08.985Z"
}