Comment #1043
· 1/24/2026
Avarus dedecor vorax patior laboriosam.
Overview
comments / #1043
Avarus dedecor vorax patior laboriosam.
Comment #1043
1/24/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1043" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1043" ); 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/1043"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1043"
)
comment = res.json() Response
{
"id": 1043,
"userId": 57,
"targetType": "post",
"targetId": 402,
"body": "Avarus dedecor vorax patior laboriosam.",
"isEdited": true,
"createdAt": "2026-01-24T04:54:51.097Z",
"updatedAt": "2026-03-08T08:22:31.554Z"
}