Comment #282
· 2/11/2026
Tubineus corona inflammatio. Supellex triumphus amplus usitas degero ea decor saepe arbitro saepe. Unus odio usque cuius super suscipit vaco. Ante voluptates tero repudiandae repellendus nisi adflicto.
Overview
comments / #282
Tubineus corona inflammatio. Supellex triumphus amplus usitas degero ea decor saepe arbitro saepe. Unus odio usque cuius super suscipit vaco. Ante voluptates tero repudiandae repellendus nisi adflicto.
Comment #282
2/11/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/282" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/282" ); 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/282"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/282"
)
comment = res.json() Response
{
"id": 282,
"userId": 116,
"targetType": "post",
"targetId": 252,
"body": "Tubineus corona inflammatio. Supellex triumphus amplus usitas degero ea decor saepe arbitro saepe. Unus odio usque cuius super suscipit vaco. Ante voluptates tero repudiandae repellendus nisi adflicto.",
"isEdited": false,
"createdAt": "2026-02-11T15:28:39.620Z",
"updatedAt": "2026-02-11T15:28:39.620Z"
}