example-data.com

messages / #227

Message #227

· 3/18/2026

Certus voluptas turbo paens sint. Teres turbo minima defungo adsidue soluta. Dolor comitatus nostrum.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/messages/227"
)
message = res.json()
{
  "id": 227,
  "conversationId": 14,
  "userId": 199,
  "body": "Certus voluptas turbo paens sint. Teres turbo minima defungo adsidue soluta. Dolor comitatus nostrum.",
  "isEdited": false,
  "createdAt": "2026-03-18T08:00:37.593Z",
  "updatedAt": "2026-03-18T08:00:37.593Z"
}
Draftbit