Comment #56
· 12/1/2025
Coaegresco degero totam debitis abduco bene torqueo. Caritas vulgaris nesciunt copiose. Argentum uterque abstergo casso temperantia tepesco supra repellat somnus acervus.
Overview
comments / #56
Coaegresco degero totam debitis abduco bene torqueo. Caritas vulgaris nesciunt copiose. Argentum uterque abstergo casso temperantia tepesco supra repellat somnus acervus.
Comment #56
12/1/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/56" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/56" ); 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/56"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/56"
)
comment = res.json() Response
{
"id": 56,
"userId": 29,
"targetType": "post",
"targetId": 1,
"body": "Coaegresco degero totam debitis abduco bene torqueo. Caritas vulgaris nesciunt copiose. Argentum uterque abstergo casso temperantia tepesco supra repellat somnus acervus.",
"isEdited": false,
"createdAt": "2025-12-01T13:39:12.819Z",
"updatedAt": "2025-12-01T13:39:12.819Z"
}