example-data.com
Menu
Browse docs and collections

teams

teams

Page 2 of 4.

Overview

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/teams?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/teams?limit=25"
);
const { data, meta } = 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, ListEnvelope } from "./types/teams";

const res = await fetch(
  "https://example-data.com/api/v1/teams?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Team>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/teams",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 25,
      "orgId": 9,
      "name": "Design",
      "slug": "predovic-prosacco-and-o-hara-design",
      "description": "Cur derelinquo articulus atqui stabilis libero crepusculum accusantium creator.",
      "memberCount": 15,
      "createdAt": "2024-08-29T19:14:59.873Z",
      "updatedAt": "2025-09-15T01:30:29.717Z"
    },
    {
      "id": 26,
      "orgId": 10,
      "name": "Marketing",
      "slug": "kerluke-wisozk-and-ratke-marketing",
      "description": "Sustineo desolo vacuus.",
      "memberCount": 4,
      "createdAt": "2025-03-25T05:55:22.755Z",
      "updatedAt": "2026-02-10T22:47:07.240Z"
    },
    {
      "id": 27,
      "orgId": 10,
      "name": "Infrastructure",
      "slug": "kerluke-wisozk-and-ratke-infrastructure",
      "description": "Votum tripudio crebro accendo voluptatibus.",
      "memberCount": 13,
      "createdAt": "2025-07-18T06:01:29.756Z",
      "updatedAt": "2026-04-10T19:01:31.980Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 95,
    "totalPages": 4
  },
  "links": {
    "self": "/api/v1/teams?page=2&limit=24",
    "first": "/api/v1/teams?page=1&limit=24",
    "last": "/api/v1/teams?page=4&limit=24",
    "next": "/api/v1/teams?page=3&limit=24",
    "prev": "/api/v1/teams?page=1&limit=24"
  }
}