Comment #736
· 4/19/2026
Adversus terreo timor neque subito verbum sui solvo casus quo. Pecto vacuus tutis cogo adipiscor caveo. Esse caste utpote deleniti.
Overview
comments / #736
Adversus terreo timor neque subito verbum sui solvo casus quo. Pecto vacuus tutis cogo adipiscor caveo. Esse caste utpote deleniti.
Comment #736
4/19/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/736" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/736" ); 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/736"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/736"
)
comment = res.json() Response
{
"id": 736,
"userId": 218,
"targetType": "post",
"targetId": 127,
"body": "Adversus terreo timor neque subito verbum sui solvo casus quo. Pecto vacuus tutis cogo adipiscor caveo. Esse caste utpote deleniti.",
"isEdited": false,
"createdAt": "2026-04-19T15:39:52.756Z",
"updatedAt": "2026-04-19T15:39:52.756Z"
}