conversations
conversations
Browse 200 conversations records. Explore sample records and fetch JSON over a free REST API for prototypes, tests, and learning.
Overview
Cards
Compact
- 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
Detailed
Music Lovers 91
- title
- Music Lovers 91
- isGroup
- true
- createdAt
- updatedAt
conversations #2
- title
- —
- isGroup
- false
- createdAt
- updatedAt
Support Channel 77
- title
- Support Channel 77
- isGroup
- true
- createdAt
- updatedAt
Design Squad 69
- title
- Design Squad 69
- isGroup
- true
- createdAt
- updatedAt
conversations #5
- title
- —
- isGroup
- false
- createdAt
- updatedAt
conversations #6
- title
- —
- isGroup
- false
- createdAt
- updatedAt
Showing first 6 of 24 on this page.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/conversations?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/conversations?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/conversations.d.ts https://example-data.com/types/conversations.d.ts
import type { Conversation, ListEnvelope } from "./types/conversations";
const res = await fetch(
"https://example-data.com/api/v1/conversations?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Conversation>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/conversations",
params={"limit": 25},
)
data = res.json() Response
{
"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
}
}