Comment #143
· 8/20/2024
Pax arbitro testimonium patria tredecim. Caritas crinis ante delectatio catena capio. Tepesco amicitia comprehendo perspiciatis antiquus cenaculum.
comments / #143
Pax arbitro testimonium patria tredecim. Caritas crinis ante delectatio catena capio. Tepesco amicitia comprehendo perspiciatis antiquus cenaculum.
Comment #143
8/20/2024
curl -sS \
"https://example-data.com/api/v1/comments/143" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/143"
);
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/143"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/143"
)
comment = res.json() {
"id": 143,
"userId": 106,
"targetType": "post",
"targetId": 394,
"body": "Pax arbitro testimonium patria tredecim. Caritas crinis ante delectatio catena capio. Tepesco amicitia comprehendo perspiciatis antiquus cenaculum.",
"isEdited": false,
"createdAt": "2024-08-20T22:26:58.813Z",
"updatedAt": "2024-08-20T22:26:58.813Z"
}