Comment #157
· 1/3/2025
Amaritudo synagoga curo repellat tonsor aperiam atrox.
comments / #157
Amaritudo synagoga curo repellat tonsor aperiam atrox.
Comment #157
1/3/2025
curl -sS \
"https://example-data.com/api/v1/comments/157" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/157"
);
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/157"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/157"
)
comment = res.json() {
"id": 157,
"userId": 47,
"targetType": "post",
"targetId": 15,
"body": "Amaritudo synagoga curo repellat tonsor aperiam atrox.",
"isEdited": false,
"createdAt": "2025-01-03T06:38:08.051Z",
"updatedAt": "2025-01-03T06:38:08.051Z"
}