Comment #87
· 12/30/2025
Nostrum tondeo carmen solvo viduo.
comments / #87
Nostrum tondeo carmen solvo viduo.
Comment #87
12/30/2025
curl -sS \
"https://example-data.com/api/v1/comments/87" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/87"
);
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/87"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/87"
)
comment = res.json() {
"id": 87,
"userId": 200,
"targetType": "post",
"targetId": 390,
"body": "Nostrum tondeo carmen solvo viduo.",
"isEdited": false,
"createdAt": "2025-12-30T08:20:03.350Z",
"updatedAt": "2025-12-30T08:20:03.350Z"
}