Comment #43
· 10/23/2025
Inflammatio vociferor toties. Cetera bos adnuo abeo adimpleo cado demulceo sperno.
comments / #43
Inflammatio vociferor toties. Cetera bos adnuo abeo adimpleo cado demulceo sperno.
Comment #43
10/23/2025
curl -sS \
"https://example-data.com/api/v1/comments/43" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/43"
);
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/43"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/43"
)
comment = res.json() {
"id": 43,
"userId": 205,
"targetType": "post",
"targetId": 81,
"body": "Inflammatio vociferor toties. Cetera bos adnuo abeo adimpleo cado demulceo sperno.",
"isEdited": false,
"createdAt": "2025-10-23T02:10:02.701Z",
"updatedAt": "2025-10-23T02:10:02.701Z"
}