example-data.com

teams

teams

Page 2 of 4.

orgId
Predovic, Prosacco and O'Hara
name
Design
slug
predovic-prosacco-and-o-hara-design
description
Cur derelinquo articulus atqui stabilis libero crepusculum accusantium creator.
memberCount
15
createdAt
updatedAt
orgId
Kerluke, Wisozk and Ratke
name
Marketing
slug
kerluke-wisozk-and-ratke-marketing
description
Sustineo desolo vacuus.
memberCount
4
createdAt
updatedAt
orgId
Kerluke, Wisozk and Ratke
name
Infrastructure
slug
kerluke-wisozk-and-ratke-infrastructure
description
Votum tripudio crebro accendo voluptatibus.
memberCount
13
createdAt
updatedAt
orgId
Kerluke, Wisozk and Ratke
name
Support
slug
kerluke-wisozk-and-ratke-support
description
Vitium adimpleo argumentum vaco trado asperiores vomito esse.
memberCount
24
createdAt
updatedAt
orgId
Krajcik Group
name
Analytics
slug
krajcik-group-analytics
description
Stabilis tendo talus celo sumptus depono comprehendo.
memberCount
21
createdAt
updatedAt
orgId
Krajcik Group
name
Customer Success
slug
krajcik-group-customer-success
description
Succurro valens asper claro vitae ventosus vir defungo.
memberCount
10
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": 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",
    "next": "/api/v1/teams?page=3",
    "prev": "/api/v1/teams?page=1"
  }
}
Draftbit