Comment #69
· 3/27/2026
Tardus delicate crur tonsor sponte ultra stella spes cunabula temperantia. Vita uxor optio denuncio.
Overview
comments / #69
Tardus delicate crur tonsor sponte ultra stella spes cunabula temperantia. Vita uxor optio denuncio.
Comment #69
3/27/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/69" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/69" ); 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/69"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/69"
)
comment = res.json() Response
{
"id": 69,
"userId": 3,
"targetType": "post",
"targetId": 123,
"body": "Tardus delicate crur tonsor sponte ultra stella spes cunabula temperantia. Vita uxor optio denuncio.",
"isEdited": false,
"createdAt": "2026-03-27T16:33:56.857Z",
"updatedAt": "2026-03-27T16:33:56.857Z"
}