Comment #217
· 3/11/2026
Appono animi nulla denego assentator. Pecco perferendis succurro succurro usque odit turba debilito magnam.
comments / #217
Appono animi nulla denego assentator. Pecco perferendis succurro succurro usque odit turba debilito magnam.
Comment #217
3/11/2026
curl -sS \
"https://example-data.com/api/v1/comments/217" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/217"
);
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/217"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/217"
)
comment = res.json() {
"id": 217,
"userId": 131,
"targetType": "post",
"targetId": 234,
"body": "Appono animi nulla denego assentator. Pecco perferendis succurro succurro usque odit turba debilito magnam.",
"isEdited": false,
"createdAt": "2026-03-11T21:44:26.112Z",
"updatedAt": "2026-03-11T21:44:26.112Z"
}