Comment #1467
· 3/18/2026
Ulterius summisse utor degenero. Cohors cursus vere unde aliquam carus quam viriliter iste thesaurus.
Overview
comments / #1467
Ulterius summisse utor degenero. Cohors cursus vere unde aliquam carus quam viriliter iste thesaurus.
Comment #1467
3/18/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1467" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1467" ); 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/1467"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1467"
)
comment = res.json() Response
{
"id": 1467,
"userId": 101,
"targetType": "post",
"targetId": 38,
"body": "Ulterius summisse utor degenero. Cohors cursus vere unde aliquam carus quam viriliter iste thesaurus.",
"isEdited": false,
"createdAt": "2026-03-18T22:18:29.600Z",
"updatedAt": "2026-03-18T22:18:29.600Z"
}