Message #26
· 2/15/2026
Civitas thalassinus careo confugo. Ratione bos tremo sollers tollo venia argentum.
Overview
messages / #26
Civitas thalassinus careo confugo. Ratione bos tremo sollers tollo venia argentum.
Message #26
2/15/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/26" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/26" ); 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/26"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/26"
)
message = res.json() Response
{
"id": 26,
"conversationId": 2,
"userId": 188,
"body": "Civitas thalassinus careo confugo. Ratione bos tremo sollers tollo venia argentum.",
"isEdited": false,
"createdAt": "2026-02-15T15:49:23.824Z",
"updatedAt": "2026-02-15T15:49:23.824Z"
}