example-data.com

messages / #14

Message #14

· 11/15/2025

Aequitas thermae censura adsuesco vinculum agnitio vir terreo pauci venustas.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/messages/14"
)
message = res.json()
{
  "id": 14,
  "conversationId": 2,
  "userId": 233,
  "body": "Aequitas thermae censura adsuesco vinculum agnitio vir terreo pauci venustas.",
  "isEdited": false,
  "createdAt": "2025-11-15T12:09:21.518Z",
  "updatedAt": "2025-11-15T12:09:21.518Z"
}
Draftbit