Comment #709
· 6/11/2024
Bos conqueror quae voluptatum. Bardus admoneo thymum bis usitas aspernatur absorbeo tenus.
comments / #709
Bos conqueror quae voluptatum. Bardus admoneo thymum bis usitas aspernatur absorbeo tenus.
Comment #709
6/11/2024
curl -sS \
"https://example-data.com/api/v1/comments/709" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/709"
);
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/709"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/709"
)
comment = res.json() {
"id": 709,
"userId": 76,
"targetType": "post",
"targetId": 110,
"body": "Bos conqueror quae voluptatum. Bardus admoneo thymum bis usitas aspernatur absorbeo tenus.",
"isEdited": false,
"createdAt": "2024-06-11T14:02:48.459Z",
"updatedAt": "2024-06-11T14:02:48.459Z"
}