example-data.com

conversations

conversations

Page 8 of 9.

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": 169,
      "title": "Recipe Share 70",
      "isGroup": true,
      "createdAt": "2025-05-29T04:11:12.236Z",
      "updatedAt": "2026-03-24T16:52:08.909Z"
    },
    {
      "id": 170,
      "title": null,
      "isGroup": false,
      "createdAt": "2025-07-23T04:13:54.168Z",
      "updatedAt": "2025-09-18T13:19:04.299Z"
    },
    {
      "id": 171,
      "title": null,
      "isGroup": false,
      "createdAt": "2025-09-06T18:10:24.745Z",
      "updatedAt": "2026-01-26T13:26:55.266Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/conversations?page=8",
    "next": "/api/v1/conversations?page=9",
    "prev": "/api/v1/conversations?page=7"
  }
}
Draftbit