Comment #166
· 5/31/2025
Agnitio aeternus voluntarius.
comments / #166
Agnitio aeternus voluntarius.
Comment #166
5/31/2025
curl -sS \
"https://example-data.com/api/v1/comments/166" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/comments/166"
);
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/166"
);
const comment = (await res.json()) as Comment;import requests
res = requests.get(
"https://example-data.com/api/v1/comments/166"
)
comment = res.json() {
"id": 166,
"userId": 54,
"targetType": "post",
"targetId": 179,
"body": "Agnitio aeternus voluntarius.",
"isEdited": false,
"createdAt": "2025-05-31T11:35:36.066Z",
"updatedAt": "2025-05-31T11:35:36.066Z"
}