example-data.com
Menu
Browse docs and collections

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

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
  }
}

View full response →