conversations
conversations
Page 5 of 9.
- conversations/97
- conversations/98
- conversations/99
- conversations/100
- conversations/101
- conversations/102
- conversations/103
- conversations/104
- conversations/105
- conversations/106
- conversations/107
- conversations/108
- conversations/109
- conversations/110
- conversations/111
- conversations/112
- conversations/113
- conversations/114
- conversations/115
- conversations/116
- conversations/117
- conversations/118
- conversations/119
- conversations/120
-
#97
#97
-
#98
#98
-
Coffee Break 87
#99
-
#100
#100
-
#101
#101
-
#102
#102
-
#103
#103
-
#104
#104
-
Marketing Hub 69
#105
-
Weekend Plans 2
#106
-
#107
#107
-
#108
#108
-
Music Lovers 52
#109
-
Project Phoenix 50
#110
-
#111
#111
-
#112
#112
-
Study Group 55
#113
-
Study Group 37
#114
-
Design Squad 54
#115
-
Movie Night 22
#116
-
Music Lovers 61
#117
-
Movie Night 84
#118
-
Dev Team 44
#119
-
#120
#120
- title
- —
- isGroup
- false
- createdAt
- updatedAt
- title
- —
- isGroup
- false
- createdAt
- updatedAt
- title
- Coffee Break 87
- isGroup
- true
- createdAt
- updatedAt
- title
- —
- isGroup
- false
- createdAt
- updatedAt
- title
- —
- isGroup
- false
- createdAt
- updatedAt
- title
- —
- isGroup
- false
- createdAt
- updatedAt
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/conversations?limit=25"const res = await fetch(
"https://example-data.com/api/v1/conversations?limit=25"
);
const { data, meta } = await res.json();import type { Conversation, ListEnvelope } from "https://example-data.com/types/conversations.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/conversations?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Conversation>;import requests
res = requests.get(
"https://example-data.com/api/v1/conversations",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 97,
"title": null,
"isGroup": false,
"createdAt": "2026-04-12T16:29:58.535Z",
"updatedAt": "2026-04-13T22:01:55.990Z"
},
{
"id": 98,
"title": null,
"isGroup": false,
"createdAt": "2025-10-31T04:39:34.382Z",
"updatedAt": "2026-02-03T11:43:36.458Z"
},
{
"id": 99,
"title": "Coffee Break 87",
"isGroup": true,
"createdAt": "2026-02-08T07:12:38.056Z",
"updatedAt": "2026-02-13T01:15:50.058Z"
}
],
"meta": {
"page": 5,
"limit": 24,
"total": 200,
"totalPages": 9
},
"links": {
"self": "/api/v1/conversations?page=5",
"next": "/api/v1/conversations?page=6",
"prev": "/api/v1/conversations?page=4"
}
}