Comment #456
· 4/18/2025
Tantillus demergo adulatio desipio adeo ipsum trucido perspiciatis xiphias tergiversatio. Paens denuo animadverto ipsa comminor similique. Volup corrumpo excepturi decimus viscus.
Overview
comments / #456
Tantillus demergo adulatio desipio adeo ipsum trucido perspiciatis xiphias tergiversatio. Paens denuo animadverto ipsa comminor similique. Volup corrumpo excepturi decimus viscus.
Comment #456
4/18/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/456" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/456" ); 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/456"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/456"
)
comment = res.json() Response
{
"id": 456,
"userId": 249,
"targetType": "post",
"targetId": 483,
"body": "Tantillus demergo adulatio desipio adeo ipsum trucido perspiciatis xiphias tergiversatio. Paens denuo animadverto ipsa comminor similique. Volup corrumpo excepturi decimus viscus.",
"isEdited": false,
"createdAt": "2025-04-18T03:45:23.582Z",
"updatedAt": "2025-04-18T03:45:23.582Z"
}