Message #423
· 5/21/2026
Deficio tot pecus sapiente tam quae perspiciatis. Aqua articulus thema tondeo.
Overview
messages / #423
Deficio tot pecus sapiente tam quae perspiciatis. Aqua articulus thema tondeo.
Message #423
5/21/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/423" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/423" ); 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/423"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/423"
)
message = res.json() Response
{
"id": 423,
"conversationId": 23,
"userId": 213,
"body": "Deficio tot pecus sapiente tam quae perspiciatis. Aqua articulus thema tondeo.",
"isEdited": false,
"createdAt": "2026-05-21T12:34:04.776Z",
"updatedAt": "2026-05-21T12:34:04.776Z"
}