Comment #1245
· 3/2/2026
Decens comparo creta magni demoror currus. Asperiores careo maxime absque creta tristis victoria cras congregatio nulla.
Overview
comments / #1245
Decens comparo creta magni demoror currus. Asperiores careo maxime absque creta tristis victoria cras congregatio nulla.
Comment #1245
3/2/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1245" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1245" ); 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/1245"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1245"
)
comment = res.json() Response
{
"id": 1245,
"userId": 185,
"targetType": "post",
"targetId": 452,
"body": "Decens comparo creta magni demoror currus. Asperiores careo maxime absque creta tristis victoria cras congregatio nulla.",
"isEdited": false,
"createdAt": "2026-03-02T12:11:15.099Z",
"updatedAt": "2026-03-02T12:11:15.099Z"
}