Comment #571
· 6/13/2024
Laudantium villa subseco aegrus subnecto vulnero eveniet amaritudo sunt. Clibanus despecto corrumpo incidunt tempus advoco caveo articulus.
comments / #571
Laudantium villa subseco aegrus subnecto vulnero eveniet amaritudo sunt. Clibanus despecto corrumpo incidunt tempus advoco caveo articulus.
Comment #571
6/13/2024
curl -sS \
"https://example-data.com/api/v1/comments/571" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/571"
);
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/571"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/571"
)
comment = res.json() {
"id": 571,
"userId": 105,
"targetType": "post",
"targetId": 286,
"body": "Laudantium villa subseco aegrus subnecto vulnero eveniet amaritudo sunt. Clibanus despecto corrumpo incidunt tempus advoco caveo articulus.",
"isEdited": true,
"createdAt": "2024-06-13T16:17:16.095Z",
"updatedAt": "2026-02-19T15:36:48.017Z"
}