Comment #240
· 5/13/2025
Arceo triumphus claro adipiscor tenuis.
comments / #240
Arceo triumphus claro adipiscor tenuis.
Comment #240
5/13/2025
curl -sS \
"https://example-data.com/api/v1/comments/240" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/240"
);
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/240"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/240"
)
comment = res.json() {
"id": 240,
"userId": 176,
"targetType": "post",
"targetId": 231,
"body": "Arceo triumphus claro adipiscor tenuis.",
"isEdited": false,
"createdAt": "2025-05-13T06:25:50.708Z",
"updatedAt": "2025-05-13T06:25:50.708Z"
}