Comment #60
· 9/22/2025
Comis explicabo studio truculenter.
comments / #60
Comis explicabo studio truculenter.
Comment #60
9/22/2025
curl -sS \
"https://example-data.com/api/v1/comments/60" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/60"
);
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/60"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/60"
)
comment = res.json() {
"id": 60,
"userId": 100,
"targetType": "post",
"targetId": 481,
"body": "Comis explicabo studio truculenter.",
"isEdited": false,
"createdAt": "2025-09-22T01:05:51.527Z",
"updatedAt": "2025-09-22T01:05:51.527Z"
}