Comment #993
· 2/13/2026
Comburo fugit ago acerbitas. Statua tener adicio amitto eligendi viscus. Adipisci vacuus vomer accedo ulciscor vicissitudo apparatus tabula somnus.
comments / #993
Comburo fugit ago acerbitas. Statua tener adicio amitto eligendi viscus. Adipisci vacuus vomer accedo ulciscor vicissitudo apparatus tabula somnus.
Comment #993
2/13/2026
curl -sS \
"https://example-data.com/api/v1/comments/993" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/993"
);
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/993"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/993"
)
comment = res.json() {
"id": 993,
"userId": 20,
"targetType": "post",
"targetId": 194,
"body": "Comburo fugit ago acerbitas. Statua tener adicio amitto eligendi viscus. Adipisci vacuus vomer accedo ulciscor vicissitudo apparatus tabula somnus.",
"isEdited": false,
"createdAt": "2026-02-13T19:09:31.929Z",
"updatedAt": "2026-02-13T19:09:31.929Z"
}