Comment #235
· 5/4/2026
Molestias bos absum administratio vomer creator.
comments / #235
Molestias bos absum administratio vomer creator.
Comment #235
5/4/2026
curl -sS \
"https://example-data.com/api/v1/comments/235" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/235"
);
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/235"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/235"
)
comment = res.json() {
"id": 235,
"userId": 58,
"targetType": "post",
"targetId": 306,
"body": "Molestias bos absum administratio vomer creator.",
"isEdited": false,
"createdAt": "2026-05-04T21:27:58.010Z",
"updatedAt": "2026-05-04T21:27:58.010Z"
}