Comment #239
· 4/16/2026
Urbanus audio talus tabesco conservo succedo aliquid.
comments / #239
Urbanus audio talus tabesco conservo succedo aliquid.
Comment #239
4/16/2026
curl -sS \
"https://example-data.com/api/v1/comments/239" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/239"
);
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/239"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/239"
)
comment = res.json() {
"id": 239,
"userId": 228,
"targetType": "post",
"targetId": 80,
"body": "Urbanus audio talus tabesco conservo succedo aliquid.",
"isEdited": false,
"createdAt": "2026-04-16T11:47:18.099Z",
"updatedAt": "2026-04-16T11:47:18.099Z"
}