Comment #1485
· 8/5/2025
Amiculum ultio caveo tibi chirographum auctor aequus. Infit voluptatum acquiro pecto studio caste appello repellat adsum. Dapifer centum omnis amicitia minus. Decumbo tabgo patria fugiat summa.
Overview
comments / #1485
Amiculum ultio caveo tibi chirographum auctor aequus. Infit voluptatum acquiro pecto studio caste appello repellat adsum. Dapifer centum omnis amicitia minus. Decumbo tabgo patria fugiat summa.
Comment #1485
8/5/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1485" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1485" ); 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/1485"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1485"
)
comment = res.json() Response
{
"id": 1485,
"userId": 117,
"targetType": "post",
"targetId": 368,
"body": "Amiculum ultio caveo tibi chirographum auctor aequus. Infit voluptatum acquiro pecto studio caste appello repellat adsum. Dapifer centum omnis amicitia minus. Decumbo tabgo patria fugiat summa.",
"isEdited": false,
"createdAt": "2025-08-05T16:55:03.226Z",
"updatedAt": "2025-08-05T16:55:03.226Z"
}