example-data.com

conversations

conversations

Page 9 of 9.

title
isGroup
false
createdAt
updatedAt
title
Gaming Night 16
isGroup
true
createdAt
updatedAt
title
isGroup
false
createdAt
updatedAt
title
Project Phoenix 47
isGroup
true
createdAt
updatedAt
title
isGroup
false
createdAt
updatedAt
title
isGroup
false
createdAt
updatedAt

Showing first 6 of 8 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": 193,
      "title": null,
      "isGroup": false,
      "createdAt": "2025-06-09T21:18:16.148Z",
      "updatedAt": "2026-04-21T23:39:40.978Z"
    },
    {
      "id": 194,
      "title": "Gaming Night 16",
      "isGroup": true,
      "createdAt": "2025-12-26T19:32:02.640Z",
      "updatedAt": "2026-04-28T17:35:10.943Z"
    },
    {
      "id": 195,
      "title": null,
      "isGroup": false,
      "createdAt": "2025-07-23T17:23:15.848Z",
      "updatedAt": "2026-03-27T21:11:18.712Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/conversations?page=9",
    "next": null,
    "prev": "/api/v1/conversations?page=8"
  }
}
Draftbit