example-data.com

conversations

conversations

Page 4 of 9.

title
Tech Talk 51
isGroup
true
createdAt
updatedAt
title
isGroup
false
createdAt
updatedAt
title
isGroup
false
createdAt
updatedAt
title
Study Group 24
isGroup
true
createdAt
updatedAt
title
isGroup
false
createdAt
updatedAt
title
Coffee Break 70
isGroup
true
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": 73,
      "title": "Tech Talk 51",
      "isGroup": true,
      "createdAt": "2026-02-19T13:52:03.973Z",
      "updatedAt": "2026-03-10T08:27:50.591Z"
    },
    {
      "id": 74,
      "title": null,
      "isGroup": false,
      "createdAt": "2026-03-12T04:09:17.684Z",
      "updatedAt": "2026-05-10T23:40:23.635Z"
    },
    {
      "id": 75,
      "title": null,
      "isGroup": false,
      "createdAt": "2025-12-18T12:45:54.273Z",
      "updatedAt": "2026-05-04T22:32:16.707Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/conversations?page=4",
    "next": "/api/v1/conversations?page=5",
    "prev": "/api/v1/conversations?page=3"
  }
}
Draftbit