example-data.com
Menu
Browse docs and collections

teams

teams

Page 3 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": 49,
      "orgId": 16,
      "name": "Infrastructure",
      "slug": "pouros-nikolaus-and-donnelly-infrastructure",
      "description": "Civitas avaritia antea tero virgo.",
      "memberCount": 24,
      "createdAt": "2026-03-17T13:54:43.884Z",
      "updatedAt": "2026-05-09T11:46:59.892Z"
    },
    {
      "id": 50,
      "orgId": 17,
      "name": "DevOps",
      "slug": "flatley-group-devops",
      "description": "Comprehendo arbustum atrox confido ater tollo quasi appello coerceo vociferor.",
      "memberCount": 22,
      "createdAt": "2025-06-19T07:02:25.694Z",
      "updatedAt": "2025-11-14T08:17:00.495Z"
    },
    {
      "id": 51,
      "orgId": 18,
      "name": "Product",
      "slug": "ratke-kub-product",
      "description": "Incidunt canis abutor claudeo.",
      "memberCount": 7,
      "createdAt": "2025-10-19T21:46:23.321Z",
      "updatedAt": "2026-04-11T21:27:39.734Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 95,
    "totalPages": 4
  },
  "links": {
    "self": "/api/v1/teams?page=3&limit=24",
    "first": "/api/v1/teams?page=1&limit=24",
    "last": "/api/v1/teams?page=4&limit=24",
    "next": "/api/v1/teams?page=4&limit=24",
    "prev": "/api/v1/teams?page=2&limit=24"
  }
}