example-data.com
Menu
Browse docs and collections

conversations

conversations

Page 3 of 9.

Overview

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": 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&limit=24",
    "first": "/api/v1/conversations?page=1&limit=24",
    "last": "/api/v1/conversations?page=9&limit=24",
    "next": "/api/v1/conversations?page=4&limit=24",
    "prev": "/api/v1/conversations?page=2&limit=24"
  }
}