example-data.com

messages / #190

Message #190

· 10/6/2025

Ascit suspendo caecus sustineo dolores bis victus. Asporto cui amor cilicium comburo accommodo abduco approbo.

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/messages/190"
)
message = res.json()
{
  "id": 190,
  "conversationId": 12,
  "userId": 143,
  "body": "Ascit suspendo caecus sustineo dolores bis victus. Asporto cui amor cilicium comburo accommodo abduco approbo.",
  "isEdited": false,
  "createdAt": "2025-10-06T10:39:18.429Z",
  "updatedAt": "2025-10-06T10:39:18.429Z"
}
Draftbit