Message #1166
· 8/1/2025
Tonsor adeo reprehenderit. Denego defendo cimentarius adduco thymum voluptate creo tantillus.
Overview
messages / #1166
Tonsor adeo reprehenderit. Denego defendo cimentarius adduco thymum voluptate creo tantillus.
Message #1166
8/1/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/messages/1166" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/messages/1166" ); 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/1166"
);
const message = (await res.json()) as Message; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/messages/1166"
)
message = res.json() Response
{
"id": 1166,
"conversationId": 66,
"userId": 135,
"body": "Tonsor adeo reprehenderit. Denego defendo cimentarius adduco thymum voluptate creo tantillus.",
"isEdited": false,
"createdAt": "2025-08-01T16:52:56.243Z",
"updatedAt": "2025-08-01T16:52:56.243Z"
}