Comment #1459
· 1/29/2026
Aperte eum adipisci adimpleo. Umbra cohibeo possimus urbanus alienus demonstro nihil earum brevis desipio. Ager summa atqui circumvenio eum celo adhuc utique.
Overview
comments / #1459
Aperte eum adipisci adimpleo. Umbra cohibeo possimus urbanus alienus demonstro nihil earum brevis desipio. Ager summa atqui circumvenio eum celo adhuc utique.
Comment #1459
1/29/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1459" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1459" ); const comment = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/comments.d.ts https://example-data.com/types/comments.d.ts
import type { Comment } from "./types/comments";
const res = await fetch(
"https://example-data.com/api/v1/comments/1459"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1459"
)
comment = res.json() Response
{
"id": 1459,
"userId": 200,
"targetType": "post",
"targetId": 109,
"body": "Aperte eum adipisci adimpleo. Umbra cohibeo possimus urbanus alienus demonstro nihil earum brevis desipio. Ager summa atqui circumvenio eum celo adhuc utique.",
"isEdited": false,
"createdAt": "2026-01-29T01:32:43.644Z",
"updatedAt": "2026-01-29T01:32:43.644Z"
}