Comment #1156
· 11/5/2025
Custodia acceptus argentum voro demonstro cinis cedo arca cena.
Overview
comments / #1156
Custodia acceptus argentum voro demonstro cinis cedo arca cena.
Comment #1156
11/5/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1156" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1156" ); 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/1156"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1156"
)
comment = res.json() Response
{
"id": 1156,
"userId": 236,
"targetType": "post",
"targetId": 332,
"body": "Custodia acceptus argentum voro demonstro cinis cedo arca cena.",
"isEdited": true,
"createdAt": "2025-11-05T16:51:08.741Z",
"updatedAt": "2026-02-24T11:02:52.336Z"
}