Comment #150
· 2/15/2025
Pariatur defungo cupiditas aedificium tristis aetas tam paens.
comments / #150
Pariatur defungo cupiditas aedificium tristis aetas tam paens.
Comment #150
2/15/2025
curl -sS \
"https://example-data.com/api/v1/comments/150" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/150"
);
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/150"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/150"
)
comment = res.json() {
"id": 150,
"userId": 29,
"targetType": "post",
"targetId": 485,
"body": "Pariatur defungo cupiditas aedificium tristis aetas tam paens.",
"isEdited": false,
"createdAt": "2025-02-15T19:41:27.336Z",
"updatedAt": "2025-02-15T19:41:27.336Z"
}