Message #135
· 4/1/2026
Crebro vivo cibus carbo iste cotidie repellat.
Overview
messages / #135
Crebro vivo cibus carbo iste cotidie repellat.
Message #135
4/1/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/135" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/135" ); 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/135"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/135"
)
message = res.json() Response
{
"id": 135,
"conversationId": 9,
"userId": 14,
"body": "Crebro vivo cibus carbo iste cotidie repellat.",
"isEdited": false,
"createdAt": "2026-04-01T03:31:05.158Z",
"updatedAt": "2026-04-01T03:31:05.158Z"
}