Comment #205
· 6/3/2025
Uredo fuga defluo argumentum consectetur.
comments / #205
Uredo fuga defluo argumentum consectetur.
Comment #205
6/3/2025
curl -sS \
"https://example-data.com/api/v1/comments/205" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/205"
);
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/205"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/205"
)
comment = res.json() {
"id": 205,
"userId": 56,
"targetType": "post",
"targetId": 122,
"body": "Uredo fuga defluo argumentum consectetur.",
"isEdited": false,
"createdAt": "2025-06-03T02:51:00.021Z",
"updatedAt": "2025-06-03T02:51:00.021Z"
}