Comment #332
· 5/2/2026
Thorax alienus soluta. Armarium strenuus desipio votum aeger reiciendis cubo adficio suffoco.
Overview
comments / #332
Thorax alienus soluta. Armarium strenuus desipio votum aeger reiciendis cubo adficio suffoco.
Comment #332
5/2/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/332" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/332" ); 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/332"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/332"
)
comment = res.json() Response
{
"id": 332,
"userId": 47,
"targetType": "post",
"targetId": 318,
"body": "Thorax alienus soluta. Armarium strenuus desipio votum aeger reiciendis cubo adficio suffoco.",
"isEdited": true,
"createdAt": "2026-05-02T17:07:59.300Z",
"updatedAt": "2026-05-17T23:25:06.288Z"
}