conversations
conversations
Page 6 of 9.
- conversations/121
- conversations/122
- conversations/123
- conversations/124
- conversations/125
- conversations/126
- conversations/127
- conversations/128
- conversations/129
- conversations/130
- conversations/131
- conversations/132
- conversations/133
- conversations/134
- conversations/135
- conversations/136
- conversations/137
- conversations/138
- conversations/139
- conversations/140
- conversations/141
- conversations/142
- conversations/143
- conversations/144
-
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
- title
- Study Group 31
- isGroup
- true
- createdAt
- updatedAt
- title
- —
- isGroup
- false
- createdAt
- updatedAt
- title
- —
- isGroup
- false
- createdAt
- updatedAt
- title
- —
- isGroup
- false
- createdAt
- updatedAt
- title
- —
- isGroup
- false
- createdAt
- updatedAt
- title
- Music Lovers 15
- isGroup
- true
- 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": 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",
"next": "/api/v1/conversations?page=7",
"prev": "/api/v1/conversations?page=5"
}
}