Comment #1193
· 12/16/2025
Caste libero arx voluntarius cursus veniam cena aestus aliquam spectaculum.
Overview
comments / #1193
Caste libero arx voluntarius cursus veniam cena aestus aliquam spectaculum.
Comment #1193
12/16/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1193" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1193" ); 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/1193"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1193"
)
comment = res.json() Response
{
"id": 1193,
"userId": 117,
"targetType": "post",
"targetId": 433,
"body": "Caste libero arx voluntarius cursus veniam cena aestus aliquam spectaculum.",
"isEdited": false,
"createdAt": "2025-12-16T00:05:24.681Z",
"updatedAt": "2025-12-16T00:05:24.681Z"
}