example-data.com

messages / #15

Message #15

· 11/22/2025

Adulescens tergeo amaritudo audacia.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/messages/15"
)
message = res.json()
{
  "id": 15,
  "conversationId": 2,
  "userId": 246,
  "body": "Adulescens tergeo amaritudo audacia.",
  "isEdited": false,
  "createdAt": "2025-11-22T04:52:45.228Z",
  "updatedAt": "2025-11-22T04:52:45.228Z"
}
Draftbit