example-data.com

conversations

conversations

Page 6 of 9.

title
Study Group 31
isGroup
true
createdAt
updatedAt
title
isGroup
false
createdAt
updatedAt
title
isGroup
false
createdAt
updatedAt
title
isGroup
false
createdAt
updatedAt
title
isGroup
false
createdAt
updatedAt
title
Music Lovers 15
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": 121,
      "title": "Study Group 31",
      "isGroup": true,
      "createdAt": "2026-03-22T22:26:41.298Z",
      "updatedAt": "2026-03-24T07:11:38.300Z"
    },
    {
      "id": 122,
      "title": null,
      "isGroup": false,
      "createdAt": "2026-04-21T04:55:19.210Z",
      "updatedAt": "2026-05-13T14:11:17.427Z"
    },
    {
      "id": 123,
      "title": null,
      "isGroup": false,
      "createdAt": "2025-06-21T01:52:17.043Z",
      "updatedAt": "2025-08-31T17:01:14.944Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/conversations?page=6",
    "next": "/api/v1/conversations?page=7",
    "prev": "/api/v1/conversations?page=5"
  }
}
Draftbit