example-data.com

messages / #99

Message #99

· 9/15/2025

Demitto corona altus benigne taedium cubicularis thema.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/messages/99"
)
message = res.json()
{
  "id": 99,
  "conversationId": 7,
  "userId": 183,
  "body": "Demitto corona altus benigne taedium cubicularis thema.",
  "isEdited": false,
  "createdAt": "2025-09-15T08:16:49.282Z",
  "updatedAt": "2025-09-15T08:16:49.282Z"
}
Draftbit