Comment #288
· 2/22/2026
Spargo ante celo agnitio paens sperno deprimo tutis vicinus. Aspernatur cupiditas non taceo bellum ullam sint copia pariatur. Tardus adversus unde aestas decipio aeger. Mollitia summopere quibusdam cohaero.
Overview
comments / #288
Spargo ante celo agnitio paens sperno deprimo tutis vicinus. Aspernatur cupiditas non taceo bellum ullam sint copia pariatur. Tardus adversus unde aestas decipio aeger. Mollitia summopere quibusdam cohaero.
Comment #288
2/22/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/288" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/288" ); 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/288"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/288"
)
comment = res.json() Response
{
"id": 288,
"userId": 229,
"targetType": "post",
"targetId": 146,
"body": "Spargo ante celo agnitio paens sperno deprimo tutis vicinus. Aspernatur cupiditas non taceo bellum ullam sint copia pariatur. Tardus adversus unde aestas decipio aeger. Mollitia summopere quibusdam cohaero.",
"isEdited": false,
"createdAt": "2026-02-22T20:54:51.732Z",
"updatedAt": "2026-02-22T20:54:51.732Z"
}