conversations
conversations
Page 4 of 9.
Overview
-
Tech Talk 51
#73
-
#74
#74
-
#75
#75
-
Study Group 24
#76
-
#77
#77
-
Coffee Break 70
#78
-
#79
#79
-
#80
#80
-
Travel Planning 52
#81
-
Marketing Hub 16
#82
-
Recipe Share 87
#83
-
#84
#84
-
Fitness Goals 45
#85
-
Recipe Share 66
#86
-
Study Group 69
#87
-
Coffee Break 95
#88
-
#89
#89
-
Coffee Break 28
#90
-
Travel Planning 4
#91
-
#92
#92
-
#93
#93
-
#94
#94
-
Family Chat 19
#95
-
#96
#96
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": 73,
"title": "Tech Talk 51",
"isGroup": true,
"createdAt": "2026-02-19T13:52:03.973Z",
"updatedAt": "2026-03-10T08:27:50.591Z"
},
{
"id": 74,
"title": null,
"isGroup": false,
"createdAt": "2026-03-12T04:09:17.684Z",
"updatedAt": "2026-05-10T23:40:23.635Z"
},
{
"id": 75,
"title": null,
"isGroup": false,
"createdAt": "2025-12-18T12:45:54.273Z",
"updatedAt": "2026-05-04T22:32:16.707Z"
}
],
"meta": {
"page": 4,
"limit": 24,
"total": 200,
"totalPages": 9
},
"links": {
"self": "/api/v1/conversations?page=4&limit=24",
"first": "/api/v1/conversations?page=1&limit=24",
"last": "/api/v1/conversations?page=9&limit=24",
"next": "/api/v1/conversations?page=5&limit=24",
"prev": "/api/v1/conversations?page=3&limit=24"
}
}