example-data.com

messages / #221

Message #221

· 4/17/2026

Damnatio arbitro tabernus curto speciosus decens spes.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/messages/221"
)
message = res.json()
{
  "id": 221,
  "conversationId": 13,
  "userId": 193,
  "body": "Damnatio arbitro tabernus curto speciosus decens spes.",
  "isEdited": false,
  "createdAt": "2026-04-17T04:02:30.646Z",
  "updatedAt": "2026-04-17T04:02:30.646Z"
}
Draftbit