Comment #789
· 3/21/2026
Soleo ab delectatio attero vita depono omnis. Curtus defungo creta abutor debitis usus.
Overview
comments / #789
Soleo ab delectatio attero vita depono omnis. Curtus defungo creta abutor debitis usus.
Comment #789
3/21/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/789" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/789" ); 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/789"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/789"
)
comment = res.json() Response
{
"id": 789,
"userId": 205,
"targetType": "post",
"targetId": 115,
"body": "Soleo ab delectatio attero vita depono omnis. Curtus defungo creta abutor debitis usus.",
"isEdited": false,
"createdAt": "2026-03-21T06:20:14.541Z",
"updatedAt": "2026-03-21T06:20:14.541Z"
}