Comment #1357
· 10/6/2025
Deleo amissio alter cohibeo caste apto arbor testimonium creber illo.
comments / #1357
Deleo amissio alter cohibeo caste apto arbor testimonium creber illo.
Comment #1357
10/6/2025
curl -sS \
"https://example-data.com/api/v1/comments/1357" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/1357"
);
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/1357"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1357"
)
comment = res.json() {
"id": 1357,
"userId": 174,
"targetType": "post",
"targetId": 269,
"body": "Deleo amissio alter cohibeo caste apto arbor testimonium creber illo.",
"isEdited": false,
"createdAt": "2025-10-06T21:47:29.060Z",
"updatedAt": "2025-10-06T21:47:29.060Z"
}