Comment #563
· 7/18/2025
Congregatio deporto cotidie amplitudo repellendus. Creta verbera armarium strues. Pauper denique aeternus currus architecto.
Overview
comments / #563
Congregatio deporto cotidie amplitudo repellendus. Creta verbera armarium strues. Pauper denique aeternus currus architecto.
Comment #563
7/18/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/563" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/563" ); 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/563"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/563"
)
comment = res.json() Response
{
"id": 563,
"userId": 61,
"targetType": "post",
"targetId": 4,
"body": "Congregatio deporto cotidie amplitudo repellendus. Creta verbera armarium strues. Pauper denique aeternus currus architecto.",
"isEdited": false,
"createdAt": "2025-07-18T18:52:05.715Z",
"updatedAt": "2025-07-18T18:52:05.715Z"
}