example-data.com
Menu
Browse docs and collections

Overview

teams / #42

Design

orgId
Lowe and Sons
name
Design
slug
lowe-and-sons-design
description
Viriliter iure coniuratio colo sunt casso deleniti sustineo corona.
memberCount
26
createdAt
updatedAt

Component variants

Related

References

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 42,
  "orgId": 15,
  "name": "Design",
  "slug": "lowe-and-sons-design",
  "description": "Viriliter iure coniuratio colo sunt casso deleniti sustineo corona.",
  "memberCount": 26,
  "createdAt": "2026-02-10T01:28:59.269Z",
  "updatedAt": "2026-05-10T09:58:24.026Z"
}