Comment #206
· 11/24/2025
Compello volva despecto.
comments / #206
Compello volva despecto.
Comment #206
11/24/2025
curl -sS \
"https://example-data.com/api/v1/comments/206" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/206"
);
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/206"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/206"
)
comment = res.json() {
"id": 206,
"userId": 39,
"targetType": "post",
"targetId": 243,
"body": "Compello volva despecto.",
"isEdited": false,
"createdAt": "2025-11-24T20:46:53.446Z",
"updatedAt": "2025-11-24T20:46:53.446Z"
}