Comment #912
· 12/22/2025
Carmen thorax demitto torrens damno theca conatus vos facere totidem. Veritas perspiciatis teres. Sustineo amor armarium eos arbitro summisse decimus deorsum earum coepi.
Overview
comments / #912
Carmen thorax demitto torrens damno theca conatus vos facere totidem. Veritas perspiciatis teres. Sustineo amor armarium eos arbitro summisse decimus deorsum earum coepi.
Comment #912
12/22/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/912" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/912" ); 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/912"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/912"
)
comment = res.json() Response
{
"id": 912,
"userId": 209,
"targetType": "post",
"targetId": 72,
"body": "Carmen thorax demitto torrens damno theca conatus vos facere totidem. Veritas perspiciatis teres. Sustineo amor armarium eos arbitro summisse decimus deorsum earum coepi.",
"isEdited": false,
"createdAt": "2025-12-22T20:53:43.538Z",
"updatedAt": "2025-12-22T20:53:43.538Z"
}