conversations
conversations
Page 9 of 9.
Overview
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": 193,
"title": null,
"isGroup": false,
"createdAt": "2025-06-09T21:18:16.148Z",
"updatedAt": "2026-04-21T23:39:40.978Z"
},
{
"id": 194,
"title": "Gaming Night 16",
"isGroup": true,
"createdAt": "2025-12-26T19:32:02.640Z",
"updatedAt": "2026-04-28T17:35:10.943Z"
},
{
"id": 195,
"title": null,
"isGroup": false,
"createdAt": "2025-07-23T17:23:15.848Z",
"updatedAt": "2026-03-27T21:11:18.712Z"
}
],
"meta": {
"page": 9,
"limit": 24,
"total": 200,
"totalPages": 9
},
"links": {
"self": "/api/v1/conversations?page=9&limit=24",
"first": "/api/v1/conversations?page=1&limit=24",
"last": "/api/v1/conversations?page=9&limit=24",
"next": null,
"prev": "/api/v1/conversations?page=8&limit=24"
}
}