example-data.com

messages / #239

Message #239

· 2/2/2026

Comes spero blandior cunctatio deduco tardus alienus cribro.

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/messages/239" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/messages/239"
);
const message = await res.json();
import type { Message } from "https://example-data.com/types/messages.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/messages/239"
);
const message = (await res.json()) as Message;
import requests

res = requests.get(
    "https://example-data.com/api/v1/messages/239"
)
message = res.json()
{
  "id": 239,
  "conversationId": 15,
  "userId": 122,
  "body": "Comes spero blandior cunctatio deduco tardus alienus cribro.",
  "isEdited": true,
  "createdAt": "2026-02-02T14:19:55.931Z",
  "updatedAt": "2026-04-04T14:38:17.817Z"
}
Draftbit