example-data.com

conversations

conversations

Browse 200 conversations records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

title
Music Lovers 91
isGroup
true
createdAt
updatedAt
title
isGroup
false
createdAt
updatedAt
title
Support Channel 77
isGroup
true
createdAt
updatedAt
title
Design Squad 69
isGroup
true
createdAt
updatedAt
title
isGroup
false
createdAt
updatedAt
title
isGroup
false
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": 1,
      "title": "Music Lovers 91",
      "isGroup": true,
      "createdAt": "2025-07-24T08:14:40.405Z",
      "updatedAt": "2026-03-09T06:13:46.627Z"
    },
    {
      "id": 2,
      "title": null,
      "isGroup": false,
      "createdAt": "2025-11-14T08:17:20.342Z",
      "updatedAt": "2026-03-10T20:17:56.095Z"
    },
    {
      "id": 3,
      "title": "Support Channel 77",
      "isGroup": true,
      "createdAt": "2026-04-06T22:26:12.198Z",
      "updatedAt": "2026-04-28T22:33:54.245Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 200,
    "totalPages": 8
  },
  "links": {
    "self": "/api/v1/conversations?page=1",
    "first": "/api/v1/conversations?page=1",
    "last": "/api/v1/conversations?page=8",
    "next": "/api/v1/conversations?page=2",
    "prev": null
  }
}

View full response →

Draftbit