Message #1495
· 3/11/2026
Infit asperiores hic tabella una. Compello cresco voluptatem calculus adsidue. Creator atavus alioqui clarus sumptus antiquus.
Overview
messages / #1495
Infit asperiores hic tabella una. Compello cresco voluptatem calculus adsidue. Creator atavus alioqui clarus sumptus antiquus.
Message #1495
3/11/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/1495" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/1495" ); const message = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/messages.d.ts https://example-data.com/types/messages.d.ts
import type { Message } from "./types/messages";
const res = await fetch(
"https://example-data.com/api/v1/messages/1495"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/1495"
)
message = res.json() Response
{
"id": 1495,
"conversationId": 83,
"userId": 7,
"body": "Infit asperiores hic tabella una. Compello cresco voluptatem calculus adsidue. Creator atavus alioqui clarus sumptus antiquus.",
"isEdited": false,
"createdAt": "2026-03-11T15:26:22.343Z",
"updatedAt": "2026-03-11T15:26:22.343Z"
}