Comment #1253
· 1/19/2026
Triduana cattus velociter. Censura volo verus porro distinctio damno vespillo. Rerum advenio volup aveho antepono thesis tribuo optio unus.
Overview
comments / #1253
Triduana cattus velociter. Censura volo verus porro distinctio damno vespillo. Rerum advenio volup aveho antepono thesis tribuo optio unus.
Comment #1253
1/19/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1253" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1253" ); 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/1253"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1253"
)
comment = res.json() Response
{
"id": 1253,
"userId": 84,
"targetType": "post",
"targetId": 419,
"body": "Triduana cattus velociter. Censura volo verus porro distinctio damno vespillo. Rerum advenio volup aveho antepono thesis tribuo optio unus.",
"isEdited": false,
"createdAt": "2026-01-19T18:59:01.609Z",
"updatedAt": "2026-01-19T18:59:01.609Z"
}