Comment #1106
· 2/2/2026
Somnus volva audeo compello vulnero quis coniecto complectus. Atrocitas laboriosam copia abeo claro sophismata dolorum summa vacuus. Colligo speciosus fuga tabella adflicto commemoro vir.
Overview
comments / #1106
Somnus volva audeo compello vulnero quis coniecto complectus. Atrocitas laboriosam copia abeo claro sophismata dolorum summa vacuus. Colligo speciosus fuga tabella adflicto commemoro vir.
Comment #1106
2/2/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1106" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1106" ); 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/1106"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1106"
)
comment = res.json() Response
{
"id": 1106,
"userId": 214,
"targetType": "post",
"targetId": 202,
"body": "Somnus volva audeo compello vulnero quis coniecto complectus. Atrocitas laboriosam copia abeo claro sophismata dolorum summa vacuus. Colligo speciosus fuga tabella adflicto commemoro vir.",
"isEdited": false,
"createdAt": "2026-02-02T04:36:25.061Z",
"updatedAt": "2026-02-02T04:36:25.061Z"
}