example-data.com

messages / #55

Message #55

· 4/12/2026

Vulgivagus xiphias supellex vitae color alioqui taceo omnis.

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/messages/55" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/messages/55"
);
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/55"
);
const message = (await res.json()) as Message;
import requests

res = requests.get(
    "https://example-data.com/api/v1/messages/55"
)
message = res.json()
{
  "id": 55,
  "conversationId": 4,
  "userId": 58,
  "body": "Vulgivagus xiphias supellex vitae color alioqui taceo omnis.",
  "isEdited": false,
  "createdAt": "2026-04-12T11:41:38.955Z",
  "updatedAt": "2026-04-12T11:41:38.955Z"
}
Draftbit