Comment #832
· 3/15/2026
Accedo alias desparatus nam eaque consectetur voluptatem decor. Demoror vox suus adinventitias ara verbum aestus.
Overview
comments / #832
Accedo alias desparatus nam eaque consectetur voluptatem decor. Demoror vox suus adinventitias ara verbum aestus.
Comment #832
3/15/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/832" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/832" ); 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/832"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/832"
)
comment = res.json() Response
{
"id": 832,
"userId": 116,
"targetType": "post",
"targetId": 274,
"body": "Accedo alias desparatus nam eaque consectetur voluptatem decor. Demoror vox suus adinventitias ara verbum aestus.",
"isEdited": false,
"createdAt": "2026-03-15T07:32:43.314Z",
"updatedAt": "2026-03-15T07:32:43.314Z"
}