Comment #215
· 4/5/2026
Altus coniecto ver volup acidus.
comments / #215
Altus coniecto ver volup acidus.
Comment #215
4/5/2026
curl -sS \
"https://example-data.com/api/v1/comments/215" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/215"
);
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/215"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/215"
)
comment = res.json() {
"id": 215,
"userId": 12,
"targetType": "post",
"targetId": 209,
"body": "Altus coniecto ver volup acidus.",
"isEdited": false,
"createdAt": "2026-04-05T23:11:25.120Z",
"updatedAt": "2026-04-05T23:11:25.120Z"
}