conversations
conversations
Page 6 of 9.
Overview
-
Study Group 31
#121
-
#122
#122
-
#123
#123
-
#124
#124
-
#125
#125
-
Music Lovers 15
#126
-
#127
#127
-
Team Alpha 7
#128
-
Study Group 58
#129
-
#130
#130
-
Study Group 7
#131
-
Family Chat 63
#132
-
#133
#133
-
#134
#134
-
#135
#135
-
Fitness Goals 74
#136
-
#137
#137
-
#138
#138
-
#139
#139
-
#140
#140
-
#141
#141
-
Design Squad 70
#142
-
Marketing Hub 12
#143
-
#144
#144
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": 121,
"title": "Study Group 31",
"isGroup": true,
"createdAt": "2026-03-22T22:26:41.298Z",
"updatedAt": "2026-03-24T07:11:38.300Z"
},
{
"id": 122,
"title": null,
"isGroup": false,
"createdAt": "2026-04-21T04:55:19.210Z",
"updatedAt": "2026-05-13T14:11:17.427Z"
},
{
"id": 123,
"title": null,
"isGroup": false,
"createdAt": "2025-06-21T01:52:17.043Z",
"updatedAt": "2025-08-31T17:01:14.944Z"
}
],
"meta": {
"page": 6,
"limit": 24,
"total": 200,
"totalPages": 9
},
"links": {
"self": "/api/v1/conversations?page=6&limit=24",
"first": "/api/v1/conversations?page=1&limit=24",
"last": "/api/v1/conversations?page=9&limit=24",
"next": "/api/v1/conversations?page=7&limit=24",
"prev": "/api/v1/conversations?page=5&limit=24"
}
}