Comment #164
· 5/28/2024
Amicitia tamquam aeger cum pax peior capitulus tamquam.
comments / #164
Amicitia tamquam aeger cum pax peior capitulus tamquam.
Comment #164
5/28/2024
curl -sS \
"https://example-data.com/api/v1/comments/164" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/164"
);
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/164"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/164"
)
comment = res.json() {
"id": 164,
"userId": 244,
"targetType": "post",
"targetId": 340,
"body": "Amicitia tamquam aeger cum pax peior capitulus tamquam.",
"isEdited": false,
"createdAt": "2024-05-28T08:49:58.711Z",
"updatedAt": "2024-05-28T08:49:58.711Z"
}