Comment #589
· 11/22/2025
Praesentium utroque vulnero verto. Balbus tristis villa caput tertius. Aufero adnuo iure. Illum carpo aperte infit quis.
Overview
comments / #589
Praesentium utroque vulnero verto. Balbus tristis villa caput tertius. Aufero adnuo iure. Illum carpo aperte infit quis.
Comment #589
11/22/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/589" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/589" ); const comment = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/comments.d.ts https://example-data.com/types/comments.d.ts
import type { Comment } from "./types/comments";
const res = await fetch(
"https://example-data.com/api/v1/comments/589"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/589"
)
comment = res.json() Response
{
"id": 589,
"userId": 217,
"targetType": "post",
"targetId": 387,
"body": "Praesentium utroque vulnero verto. Balbus tristis villa caput tertius. Aufero adnuo iure. Illum carpo aperte infit quis.",
"isEdited": false,
"createdAt": "2025-11-22T05:34:08.556Z",
"updatedAt": "2025-11-22T05:34:08.556Z"
}