example-data.com
Menu
Browse docs and collections

Overview

teams / #16

Sales

orgId
McGlynn, Bogisich and Toy
name
Sales
slug
mcglynn-bogisich-and-toy-sales
description
Auditor custodia eligendi arbor cribro victoria tamen terminatio valeo blandior.
memberCount
15
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 16,
  "orgId": 5,
  "name": "Sales",
  "slug": "mcglynn-bogisich-and-toy-sales",
  "description": "Auditor custodia eligendi arbor cribro victoria tamen terminatio valeo blandior.",
  "memberCount": 15,
  "createdAt": "2025-08-17T01:52:32.672Z",
  "updatedAt": "2026-03-03T01:29:25.917Z"
}