conversations
conversations
Page 7 of 9.
- conversations/145
- conversations/146
- conversations/147
- conversations/148
- conversations/149
- conversations/150
- conversations/151
- conversations/152
- conversations/153
- conversations/154
- conversations/155
- conversations/156
- conversations/157
- conversations/158
- conversations/159
- conversations/160
- conversations/161
- conversations/162
- conversations/163
- conversations/164
- conversations/165
- conversations/166
- conversations/167
- conversations/168
-
Tech Talk 86
#145
-
#146
#146
-
Weekend Plans 33
#147
-
Project Phoenix 86
#148
-
#149
#149
-
#150
#150
-
#151
#151
-
#152
#152
-
Coffee Break 55
#153
-
Dev Team 44
#154
-
#155
#155
-
Study Group 73
#156
-
Book Club 58
#157
-
#158
#158
-
Project Phoenix 11
#159
-
#160
#160
-
#161
#161
-
#162
#162
-
#163
#163
-
#164
#164
-
Coffee Break 13
#165
-
#166
#166
-
Study Group 55
#167
-
#168
#168
- title
- Tech Talk 86
- isGroup
- true
- createdAt
- updatedAt
- title
- —
- isGroup
- false
- createdAt
- updatedAt
- title
- Weekend Plans 33
- isGroup
- true
- createdAt
- updatedAt
- title
- Project Phoenix 86
- isGroup
- true
- createdAt
- updatedAt
- title
- —
- isGroup
- false
- createdAt
- updatedAt
- title
- —
- isGroup
- false
- 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": 145,
"title": "Tech Talk 86",
"isGroup": true,
"createdAt": "2026-03-14T18:54:13.634Z",
"updatedAt": "2026-03-22T00:56:05.247Z"
},
{
"id": 146,
"title": null,
"isGroup": false,
"createdAt": "2025-09-11T16:17:27.399Z",
"updatedAt": "2025-10-23T07:53:07.035Z"
},
{
"id": 147,
"title": "Weekend Plans 33",
"isGroup": true,
"createdAt": "2025-08-21T10:23:29.262Z",
"updatedAt": "2025-11-25T01:15:44.038Z"
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 200,
"totalPages": 9
},
"links": {
"self": "/api/v1/conversations?page=7",
"next": "/api/v1/conversations?page=8",
"prev": "/api/v1/conversations?page=6"
}
}