example-data.com

teams

teams

Page 3 of 4.

orgId
Pouros, Nikolaus and Donnelly
name
Infrastructure
slug
pouros-nikolaus-and-donnelly-infrastructure
description
Civitas avaritia antea tero virgo.
memberCount
24
createdAt
updatedAt
orgId
Flatley Group
name
DevOps
slug
flatley-group-devops
description
Comprehendo arbustum atrox confido ater tollo quasi appello coerceo vociferor.
memberCount
22
createdAt
updatedAt
orgId
Ratke - Kub
name
Product
slug
ratke-kub-product
description
Incidunt canis abutor claudeo.
memberCount
7
createdAt
updatedAt
orgId
Ratke - Kub
name
Research
slug
ratke-kub-research
description
Libero bibo tergo demum debeo tenetur sono correptius.
memberCount
11
createdAt
updatedAt
orgId
Ratke - Kub
name
Infrastructure
slug
ratke-kub-infrastructure
description
Commodo tersus pecco tracto quisquam victoria umbra clementia peior.
memberCount
10
createdAt
updatedAt
orgId
Ratke - Kub
name
Engineering
slug
ratke-kub-engineering
description
Caries quam aliquid deorsum confido custodia crur arcus.
memberCount
24
createdAt
updatedAt

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/teams?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/teams?limit=25"
);
const { data, meta } = await res.json();
import type { Team, ListEnvelope } from "https://example-data.com/types/teams.d.ts";

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

res = requests.get(
    "https://example-data.com/api/v1/teams",
    params={"limit": 25},
)
data = res.json()
{
  "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",
    "next": "/api/v1/teams?page=4",
    "prev": "/api/v1/teams?page=2"
  }
}
Draftbit