conversations
conversations
Page 3 of 9.
- conversations/49
- conversations/50
- conversations/51
- conversations/52
- conversations/53
- conversations/54
- conversations/55
- conversations/56
- conversations/57
- conversations/58
- conversations/59
- conversations/60
- conversations/61
- conversations/62
- conversations/63
- conversations/64
- conversations/65
- conversations/66
- conversations/67
- conversations/68
- conversations/69
- conversations/70
- conversations/71
- conversations/72
-
#49
#49
-
#50
#50
-
Study Group 26
#51
-
Weekend Plans 61
#52
-
#53
#53
-
Foodies Unite 5
#54
-
Project Phoenix 38
#55
-
#56
#56
-
#57
#57
-
Foodies Unite 96
#58
-
#59
#59
-
#60
#60
-
Project Phoenix 83
#61
-
#62
#62
-
Family Chat 77
#63
-
Support Channel 11
#64
-
#65
#65
-
#66
#66
-
#67
#67
-
Art Circle 24
#68
-
#69
#69
-
#70
#70
-
#71
#71
-
#72
#72
- title
- —
- isGroup
- false
- createdAt
- updatedAt
- title
- —
- isGroup
- false
- createdAt
- updatedAt
- title
- Study Group 26
- isGroup
- true
- createdAt
- updatedAt
- title
- Weekend Plans 61
- isGroup
- true
- createdAt
- updatedAt
- title
- —
- isGroup
- false
- createdAt
- updatedAt
- title
- Foodies Unite 5
- 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": 49,
"title": null,
"isGroup": false,
"createdAt": "2025-11-02T14:59:59.029Z",
"updatedAt": "2025-12-07T17:44:36.418Z"
},
{
"id": 50,
"title": null,
"isGroup": false,
"createdAt": "2025-12-21T17:15:39.072Z",
"updatedAt": "2026-01-30T16:56:45.071Z"
},
{
"id": 51,
"title": "Study Group 26",
"isGroup": true,
"createdAt": "2026-03-26T02:33:23.729Z",
"updatedAt": "2026-04-17T02:32:33.161Z"
}
],
"meta": {
"page": 3,
"limit": 24,
"total": 200,
"totalPages": 9
},
"links": {
"self": "/api/v1/conversations?page=3",
"next": "/api/v1/conversations?page=4",
"prev": "/api/v1/conversations?page=2"
}
}