Comment #1300
· 2/16/2025
Capillus cupiditas summopere toties molestiae. Supplanto texo vulticulus thalassinus advenio aestas tergiversatio dolores.
comments / #1300
Capillus cupiditas summopere toties molestiae. Supplanto texo vulticulus thalassinus advenio aestas tergiversatio dolores.
Comment #1300
2/16/2025
curl -sS \
"https://example-data.com/api/v1/comments/1300" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/1300"
);
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/1300"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1300"
)
comment = res.json() {
"id": 1300,
"userId": 242,
"targetType": "post",
"targetId": 417,
"body": "Capillus cupiditas summopere toties molestiae. Supplanto texo vulticulus thalassinus advenio aestas tergiversatio dolores.",
"isEdited": true,
"createdAt": "2025-02-16T14:55:12.263Z",
"updatedAt": "2026-03-06T23:38:38.502Z"
}