Comment #85
· 4/9/2026
Optio adflicto atque cruciamentum adimpleo. Ipsum laborum adduco similique substantia tamquam excepturi. Coniecto curia audentia versus conspergo suscipit.
comments / #85
Optio adflicto atque cruciamentum adimpleo. Ipsum laborum adduco similique substantia tamquam excepturi. Coniecto curia audentia versus conspergo suscipit.
Comment #85
4/9/2026
curl -sS \
"https://example-data.com/api/v1/comments/85" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/85"
);
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/85"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/85"
)
comment = res.json() {
"id": 85,
"userId": 169,
"targetType": "post",
"targetId": 53,
"body": "Optio adflicto atque cruciamentum adimpleo. Ipsum laborum adduco similique substantia tamquam excepturi. Coniecto curia audentia versus conspergo suscipit.",
"isEdited": false,
"createdAt": "2026-04-09T05:37:34.046Z",
"updatedAt": "2026-04-09T05:37:34.046Z"
}