example-data.com
Menu
Browse docs and collections

teams

teams

Browse 95 teams records. Explore sample records and fetch JSON over a free REST API for prototypes, tests, and learning.

Overview

Cards

Compact

Detailed

Analytics

orgId
Lakin Group
name
Analytics
slug
lakin-group-analytics
description
Antiquus decipio usque attonbitus avarus labore temperantia corroboro degenero.
memberCount
5
createdAt
updatedAt

Support

orgId
Lakin Group
name
Support
slug
lakin-group-support
description
Deporto accusantium comes advoco.
memberCount
13
createdAt
updatedAt

Marketing

orgId
Lakin Group
name
Marketing
slug
lakin-group-marketing
description
Utrum adicio caute defessus dolores.
memberCount
20
createdAt
updatedAt

Design

orgId
Lakin Group
name
Design
slug
lakin-group-design
description
Amplitudo absens tersus adstringo vobis.
memberCount
26
createdAt
updatedAt

Finance

orgId
Lakin Group
name
Finance
slug
lakin-group-finance
description
Amitto ancilla consequatur vulgaris ars compono molestias candidus numquam beatus.
memberCount
5
createdAt
updatedAt

HR

orgId
Cremin - Kautzer
name
HR
slug
cremin-kautzer-hr
description
Volutabrum arma voluptatibus sublime color curis aegrus suggero harum inventore.
memberCount
11
createdAt
updatedAt

Showing first 6 of 24 on this page.

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": 1,
      "orgId": 1,
      "name": "Analytics",
      "slug": "lakin-group-analytics",
      "description": "Antiquus decipio usque attonbitus avarus labore temperantia corroboro degenero.",
      "memberCount": 5,
      "createdAt": "2025-02-28T15:53:25.268Z",
      "updatedAt": "2026-04-23T21:10:23.735Z"
    },
    {
      "id": 2,
      "orgId": 1,
      "name": "Support",
      "slug": "lakin-group-support",
      "description": "Deporto accusantium comes advoco.",
      "memberCount": 13,
      "createdAt": "2025-12-27T07:57:15.047Z",
      "updatedAt": "2026-01-13T23:13:28.371Z"
    },
    {
      "id": 3,
      "orgId": 1,
      "name": "Marketing",
      "slug": "lakin-group-marketing",
      "description": "Utrum adicio caute defessus dolores.",
      "memberCount": 20,
      "createdAt": "2025-03-01T00:56:02.182Z",
      "updatedAt": "2025-10-30T21:54:26.850Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 95,
    "totalPages": 4
  },
  "links": {
    "self": "/api/v1/teams?page=1",
    "first": "/api/v1/teams?page=1",
    "last": "/api/v1/teams?page=4",
    "next": "/api/v1/teams?page=2",
    "prev": null
  }
}

View full response →