conversations
conversations
Page 8 of 9.
Overview
-
Recipe Share 70
#169
-
#170
#170
-
#171
#171
-
#172
#172
-
#173
#173
-
#174
#174
-
Family Chat 94
#175
-
Fitness Goals 81
#176
-
Music Lovers 81
#177
-
Fitness Goals 81
#178
-
Design Squad 11
#179
-
#180
#180
-
#181
#181
-
Gaming Night 98
#182
-
#183
#183
-
Recipe Share 55
#184
-
Coffee Break 53
#185
-
#186
#186
-
#187
#187
-
#188
#188
-
Marketing Hub 44
#189
-
#190
#190
-
Dev Team 5
#191
-
Art Circle 59
#192
Request
curl example
curl -sS \ "https://example-data.com/api/v1/conversations?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/conversations?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/conversations.d.ts https://example-data.com/types/conversations.d.ts
import type { Conversation, ListEnvelope } from "./types/conversations";
const res = await fetch(
"https://example-data.com/api/v1/conversations?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Conversation>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/conversations",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 169,
"title": "Recipe Share 70",
"isGroup": true,
"createdAt": "2025-05-29T04:11:12.236Z",
"updatedAt": "2026-03-24T16:52:08.909Z"
},
{
"id": 170,
"title": null,
"isGroup": false,
"createdAt": "2025-07-23T04:13:54.168Z",
"updatedAt": "2025-09-18T13:19:04.299Z"
},
{
"id": 171,
"title": null,
"isGroup": false,
"createdAt": "2025-09-06T18:10:24.745Z",
"updatedAt": "2026-01-26T13:26:55.266Z"
}
],
"meta": {
"page": 8,
"limit": 24,
"total": 200,
"totalPages": 9
},
"links": {
"self": "/api/v1/conversations?page=8&limit=24",
"first": "/api/v1/conversations?page=1&limit=24",
"last": "/api/v1/conversations?page=9&limit=24",
"next": "/api/v1/conversations?page=9&limit=24",
"prev": "/api/v1/conversations?page=7&limit=24"
}
}