Message #196
· 12/3/2025
Adicio tempora tollo aspernatur deserunt asperiores. Curiositas condico tum ustilo. Crastinus thorax viscus cerno absconditus super voluptatibus utor calculus temptatio.
messages / #196
Adicio tempora tollo aspernatur deserunt asperiores. Curiositas condico tum ustilo. Crastinus thorax viscus cerno absconditus super voluptatibus utor calculus temptatio.
Message #196
12/3/2025
curl -sS \
"https://example-data.com/api/v1/messages/196" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/messages/196"
);
const message = await res.json();import type { Message } from "https://example-data.com/types/messages.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/messages/196"
);
const message = (await res.json()) as Message;import requests
res = requests.get(
"https://example-data.com/api/v1/messages/196"
)
message = res.json() {
"id": 196,
"conversationId": 12,
"userId": 50,
"body": "Adicio tempora tollo aspernatur deserunt asperiores. Curiositas condico tum ustilo. Crastinus thorax viscus cerno absconditus super voluptatibus utor calculus temptatio.",
"isEdited": false,
"createdAt": "2025-12-03T09:47:53.906Z",
"updatedAt": "2025-12-03T09:47:53.906Z"
}