Comment #517
· 8/23/2025
Vetus aeger adflicto clam amplus. Sint tracto numquam tabula. Crur tredecim voluntarius corporis strues cornu advenio truculenter unus venio.
Overview
comments / #517
Vetus aeger adflicto clam amplus. Sint tracto numquam tabula. Crur tredecim voluntarius corporis strues cornu advenio truculenter unus venio.
Comment #517
8/23/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/517" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/517" ); 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/517"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/517"
)
comment = res.json() Response
{
"id": 517,
"userId": 129,
"targetType": "post",
"targetId": 358,
"body": "Vetus aeger adflicto clam amplus. Sint tracto numquam tabula. Crur tredecim voluntarius corporis strues cornu advenio truculenter unus venio.",
"isEdited": false,
"createdAt": "2025-08-23T23:25:04.649Z",
"updatedAt": "2025-08-23T23:25:04.649Z"
}