Comment #83
· 5/31/2024
Creber nisi via xiphias ara cena cedo sponte tardus auditor.
comments / #83
Creber nisi via xiphias ara cena cedo sponte tardus auditor.
Comment #83
5/31/2024
curl -sS \
"https://example-data.com/api/v1/comments/83" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/83"
);
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/83"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/83"
)
comment = res.json() {
"id": 83,
"userId": 63,
"targetType": "post",
"targetId": 146,
"body": "Creber nisi via xiphias ara cena cedo sponte tardus auditor.",
"isEdited": false,
"createdAt": "2024-05-31T20:18:12.284Z",
"updatedAt": "2024-05-31T20:18:12.284Z"
}