example-data.com

teams

teams

Page 4 of 4.

orgId
Prohaska - Wiza
name
Marketing
slug
prohaska-wiza-marketing
description
Carpo colo tenus.
memberCount
16
createdAt
updatedAt
orgId
Prohaska - Wiza
name
Sales
slug
prohaska-wiza-sales
description
Demulceo sulum tristis vallum tenuis conqueror.
memberCount
7
createdAt
updatedAt
orgId
Prohaska - Wiza
name
Legal
slug
prohaska-wiza-legal
description
Ustilo clarus verto curia cornu ars quos tondeo.
memberCount
14
createdAt
updatedAt
orgId
Prohaska - Wiza
name
QA
slug
prohaska-wiza-qa
description
Asporto demergo thesaurus deputo patior cohaero comprehendo creo soluta.
memberCount
20
createdAt
updatedAt
orgId
Prohaska Inc
name
Platform
slug
prohaska-inc-platform
description
Umbra desidero cohaero valetudo veritas bos.
memberCount
17
createdAt
updatedAt
orgId
Prohaska Inc
name
Design
slug
prohaska-inc-design
description
Tibi deficio demergo culpo basium abeo tergiversatio cervus attollo.
memberCount
10
createdAt
updatedAt

Showing first 6 of 23 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": 73,
      "orgId": 23,
      "name": "Marketing",
      "slug": "prohaska-wiza-marketing",
      "description": "Carpo colo tenus.",
      "memberCount": 16,
      "createdAt": "2025-10-15T13:44:31.160Z",
      "updatedAt": "2026-02-28T07:41:28.714Z"
    },
    {
      "id": 74,
      "orgId": 23,
      "name": "Sales",
      "slug": "prohaska-wiza-sales",
      "description": "Demulceo sulum tristis vallum tenuis conqueror.",
      "memberCount": 7,
      "createdAt": "2024-05-25T15:07:44.429Z",
      "updatedAt": "2025-11-04T21:07:27.687Z"
    },
    {
      "id": 75,
      "orgId": 23,
      "name": "Legal",
      "slug": "prohaska-wiza-legal",
      "description": "Ustilo clarus verto curia cornu ars quos tondeo.",
      "memberCount": 14,
      "createdAt": "2025-01-02T12:12:06.055Z",
      "updatedAt": "2025-05-09T09:10:40.810Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 95,
    "totalPages": 4
  },
  "links": {
    "self": "/api/v1/teams?page=4",
    "next": null,
    "prev": "/api/v1/teams?page=3"
  }
}
Draftbit