conversations
conversations
Browse 200 conversations records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.
- conversations/1
- conversations/2
- conversations/3
- conversations/4
- conversations/5
- conversations/6
- conversations/7
- conversations/8
- conversations/9
- conversations/10
- conversations/11
- conversations/12
- conversations/13
- conversations/14
- conversations/15
- conversations/16
- conversations/17
- conversations/18
- conversations/19
- conversations/20
- conversations/21
- conversations/22
- conversations/23
- conversations/24
- title
- Music Lovers 91
- isGroup
- true
- createdAt
- updatedAt
- title
- —
- isGroup
- false
- createdAt
- updatedAt
- title
- Support Channel 77
- isGroup
- true
- createdAt
- updatedAt
- title
- Design Squad 69
- 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": 1,
"title": "Music Lovers 91",
"isGroup": true,
"createdAt": "2025-07-24T08:14:40.405Z",
"updatedAt": "2026-03-09T06:13:46.627Z"
},
{
"id": 2,
"title": null,
"isGroup": false,
"createdAt": "2025-11-14T08:17:20.342Z",
"updatedAt": "2026-03-10T20:17:56.095Z"
},
{
"id": 3,
"title": "Support Channel 77",
"isGroup": true,
"createdAt": "2026-04-06T22:26:12.198Z",
"updatedAt": "2026-04-28T22:33:54.245Z"
}
],
"meta": {
"page": 1,
"limit": 25,
"total": 200,
"totalPages": 8
},
"links": {
"self": "/api/v1/conversations?page=1",
"first": "/api/v1/conversations?page=1",
"last": "/api/v1/conversations?page=8",
"next": "/api/v1/conversations?page=2",
"prev": null
}
}