Comment #99
· 10/23/2025
Carmen traho pecco assentator corporis consectetur deludo absque. Adeo commodi teres corrumpo creo arto uxor tutis. Termes cattus deserunt.
comments / #99
Carmen traho pecco assentator corporis consectetur deludo absque. Adeo commodi teres corrumpo creo arto uxor tutis. Termes cattus deserunt.
Comment #99
10/23/2025
curl -sS \
"https://example-data.com/api/v1/comments/99" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/99"
);
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/99"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/99"
)
comment = res.json() {
"id": 99,
"userId": 214,
"targetType": "post",
"targetId": 164,
"body": "Carmen traho pecco assentator corporis consectetur deludo absque. Adeo commodi teres corrumpo creo arto uxor tutis. Termes cattus deserunt.",
"isEdited": false,
"createdAt": "2025-10-23T09:18:59.839Z",
"updatedAt": "2025-10-23T09:18:59.839Z"
}