example-data.com
Menu
Browse docs and collections

Overview

teams / #95

Platform

orgId
Gleason - Kertzmann
name
Platform
slug
gleason-kertzmann-platform
description
Sortitus bos super agnitio.
memberCount
27
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/teams/95"
);
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/95"
);
const team = (await res.json()) as Team;

Python example

import requests

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

Response

{
  "id": 95,
  "orgId": 30,
  "name": "Platform",
  "slug": "gleason-kertzmann-platform",
  "description": "Sortitus bos super agnitio.",
  "memberCount": 27,
  "createdAt": "2025-04-11T10:21:55.217Z",
  "updatedAt": "2025-05-23T03:05:24.115Z"
}