Comment #1399
· 3/9/2026
Abeo clibanus tracto vetus abstergo error.
Overview
comments / #1399
Abeo clibanus tracto vetus abstergo error.
Comment #1399
3/9/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1399" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1399" ); 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/1399"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1399"
)
comment = res.json() Response
{
"id": 1399,
"userId": 182,
"targetType": "post",
"targetId": 426,
"body": "Abeo clibanus tracto vetus abstergo error.",
"isEdited": false,
"createdAt": "2026-03-09T16:44:36.060Z",
"updatedAt": "2026-03-09T16:44:36.060Z"
}