Comment #399
· 1/8/2026
Absorbeo caveo beneficium tondeo congregatio conforto. Aer vester alius demoror apud comparo adhaero valens quis utrum. Tepesco avarus quod aestas. Taedium avaritia xiphias civitas ait ait avaritia defleo.
Overview
comments / #399
Absorbeo caveo beneficium tondeo congregatio conforto. Aer vester alius demoror apud comparo adhaero valens quis utrum. Tepesco avarus quod aestas. Taedium avaritia xiphias civitas ait ait avaritia defleo.
Comment #399
1/8/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/399" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/399" ); 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/399"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/399"
)
comment = res.json() Response
{
"id": 399,
"userId": 240,
"targetType": "post",
"targetId": 111,
"body": "Absorbeo caveo beneficium tondeo congregatio conforto. Aer vester alius demoror apud comparo adhaero valens quis utrum. Tepesco avarus quod aestas. Taedium avaritia xiphias civitas ait ait avaritia defleo.",
"isEdited": false,
"createdAt": "2026-01-08T18:59:04.491Z",
"updatedAt": "2026-01-08T18:59:04.491Z"
}