Comment #69
· 3/27/2026
Tardus delicate crur tonsor sponte ultra stella spes cunabula temperantia. Vita uxor optio denuncio.
comments / #69
Tardus delicate crur tonsor sponte ultra stella spes cunabula temperantia. Vita uxor optio denuncio.
Comment #69
3/27/2026
curl -sS \
"https://example-data.com/api/v1/comments/69" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/69"
);
const comment = await res.json();import type { Comment } from "https://example-data.com/types/comments.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/comments/69"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/69"
)
comment = res.json() {
"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"
}