conversations
conversations
Page 2 of 9.
- conversations/25
- conversations/26
- conversations/27
- conversations/28
- conversations/29
- conversations/30
- conversations/31
- conversations/32
- conversations/33
- conversations/34
- conversations/35
- conversations/36
- conversations/37
- conversations/38
- conversations/39
- conversations/40
- conversations/41
- conversations/42
- conversations/43
- conversations/44
- conversations/45
- conversations/46
- conversations/47
- conversations/48
- title
- —
- isGroup
- false
- createdAt
- updatedAt
- title
- —
- isGroup
- false
- createdAt
- updatedAt
- title
- Foodies Unite 15
- isGroup
- true
- createdAt
- updatedAt
- title
- Movie Night 25
- 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": 25,
"title": null,
"isGroup": false,
"createdAt": "2025-08-11T15:40:10.858Z",
"updatedAt": "2025-11-04T04:25:09.770Z"
},
{
"id": 26,
"title": null,
"isGroup": false,
"createdAt": "2026-03-07T20:54:05.385Z",
"updatedAt": "2026-04-15T20:11:41.053Z"
},
{
"id": 27,
"title": "Foodies Unite 15",
"isGroup": true,
"createdAt": "2025-11-30T00:56:02.257Z",
"updatedAt": "2026-04-24T02:52:21.166Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 200,
"totalPages": 9
},
"links": {
"self": "/api/v1/conversations?page=2",
"next": "/api/v1/conversations?page=3",
"prev": "/api/v1/conversations?page=1"
}
}