Comment #1313
· 2/3/2026
Harum subvenio acies corrupti demitto vomito. Caute fugit deporto verecundia conor sollicito est pecto. Degusto campana defetiscor maxime quo stabilis nihil autus bos.
Overview
comments / #1313
Harum subvenio acies corrupti demitto vomito. Caute fugit deporto verecundia conor sollicito est pecto. Degusto campana defetiscor maxime quo stabilis nihil autus bos.
Comment #1313
2/3/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1313" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1313" ); 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/1313"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1313"
)
comment = res.json() Response
{
"id": 1313,
"userId": 29,
"targetType": "post",
"targetId": 129,
"body": "Harum subvenio acies corrupti demitto vomito. Caute fugit deporto verecundia conor sollicito est pecto. Degusto campana defetiscor maxime quo stabilis nihil autus bos.",
"isEdited": false,
"createdAt": "2026-02-03T16:04:15.037Z",
"updatedAt": "2026-02-03T16:04:15.037Z"
}