Comment #804
· 3/15/2026
Vorax talis venustas cupio uberrime bene tamen contigo. Virtus desparatus vicinus arma artificiose.
Overview
comments / #804
Vorax talis venustas cupio uberrime bene tamen contigo. Virtus desparatus vicinus arma artificiose.
Comment #804
3/15/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/804" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/804" ); 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/804"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/804"
)
comment = res.json() Response
{
"id": 804,
"userId": 212,
"targetType": "post",
"targetId": 213,
"body": "Vorax talis venustas cupio uberrime bene tamen contigo. Virtus desparatus vicinus arma artificiose.",
"isEdited": false,
"createdAt": "2026-03-15T19:43:25.189Z",
"updatedAt": "2026-03-15T19:43:25.189Z"
}