Comment #208
· 5/13/2026
Clibanus corrigo quisquam. Utique compono strues fugit.
comments / #208
Clibanus corrigo quisquam. Utique compono strues fugit.
Comment #208
5/13/2026
curl -sS \
"https://example-data.com/api/v1/comments/208" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/208"
);
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/208"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/208"
)
comment = res.json() {
"id": 208,
"userId": 172,
"targetType": "post",
"targetId": 192,
"body": "Clibanus corrigo quisquam. Utique compono strues fugit.",
"isEdited": false,
"createdAt": "2026-05-13T01:24:24.893Z",
"updatedAt": "2026-05-13T01:24:24.893Z"
}