Comment #118
· 7/3/2025
Sint vitae civis custodia adipiscor uredo argumentum cimentarius. Caveo cauda a cervus patior adopto alo capto.
comments / #118
Sint vitae civis custodia adipiscor uredo argumentum cimentarius. Caveo cauda a cervus patior adopto alo capto.
Comment #118
7/3/2025
curl -sS \
"https://example-data.com/api/v1/comments/118" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/118"
);
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/118"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/118"
)
comment = res.json() {
"id": 118,
"userId": 226,
"targetType": "post",
"targetId": 12,
"body": "Sint vitae civis custodia adipiscor uredo argumentum cimentarius. Caveo cauda a cervus patior adopto alo capto.",
"isEdited": false,
"createdAt": "2025-07-03T02:42:55.736Z",
"updatedAt": "2025-07-03T02:42:55.736Z"
}