teams
teams
Browse 95 teams records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.
-
Analytics
#1
Antiquus decipio usque attonbitus avarus labore temperantia corroboro degenero.
-
Support
#2
Deporto accusantium comes advoco.
-
Marketing
#3
Utrum adicio caute defessus dolores.
-
Design
#4
Amplitudo absens tersus adstringo vobis.
-
Finance
#5
Amitto ancilla consequatur vulgaris ars compono molestias candidus numquam beatus.
-
HR
#6
Volutabrum arma voluptatibus sublime color curis aegrus suggero harum inventore.
-
Sales
#7
Sono sumptus cetera talis.
-
Legal
#8
Tergiversatio dolore caterva atqui vulariter consectetur ascisco amor.
-
Security
#9
Pectus atque iure.
-
Analytics
#10
Ocer audeo subnecto exercitationem et.
-
Design
#11
Armarium tollo praesentium annus.
-
Operations
#12
Vix itaque conduco culpo pariatur cito.
-
Design
#13
Thema cibo deputo suus.
-
Security
#14
Ab curriculum velit acceptus spoliatio deleo amicitia harum.
-
Customer Success
#15
Verumtamen stabilis ait.
-
Sales
#16
Auditor custodia eligendi arbor cribro victoria tamen terminatio valeo blandior.
-
Operations
#17
Capitulus trans nam summa thema.
-
Data
#18
Torrens dolore thermae voro spes.
-
Finance
#19
Comparo sequi contabesco.
-
Sales
#20
Aestus cubicularis demo creo decipio adeo desolo.
-
Data
#21
Fugit terminatio absum aequitas aegre mollitia tabesco ducimus cohors.
-
Analytics
#22
Enim video audacia uter.
-
Security
#23
Venio consequuntur conservo convoco cohaero adopto.
-
Finance
#24
Angelus sunt alias aperte consequuntur carpo varius aetas qui.
- orgId
-
Lakin Group
- name
- Analytics
- slug
- lakin-group-analytics
- description
- Antiquus decipio usque attonbitus avarus labore temperantia corroboro degenero.
- memberCount
- 5
- createdAt
- updatedAt
- orgId
-
Lakin Group
- name
- Support
- slug
- lakin-group-support
- description
- Deporto accusantium comes advoco.
- memberCount
- 13
- createdAt
- updatedAt
- orgId
-
Lakin Group
- name
- Marketing
- slug
- lakin-group-marketing
- description
- Utrum adicio caute defessus dolores.
- memberCount
- 20
- createdAt
- updatedAt
- orgId
-
Lakin Group
- name
- Design
- slug
- lakin-group-design
- description
- Amplitudo absens tersus adstringo vobis.
- memberCount
- 26
- createdAt
- updatedAt
- orgId
-
Lakin Group
- name
- Finance
- slug
- lakin-group-finance
- description
- Amitto ancilla consequatur vulgaris ars compono molestias candidus numquam beatus.
- memberCount
- 5
- createdAt
- updatedAt
- 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.
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": 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
}
}