Comment #1432
· 4/7/2026
Voluptatem attero deludo vomito adopto combibo aspernatur universe sustineo bonus.
Overview
comments / #1432
Voluptatem attero deludo vomito adopto combibo aspernatur universe sustineo bonus.
Comment #1432
4/7/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1432" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1432" ); 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/1432"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1432"
)
comment = res.json() Response
{
"id": 1432,
"userId": 231,
"targetType": "post",
"targetId": 25,
"body": "Voluptatem attero deludo vomito adopto combibo aspernatur universe sustineo bonus.",
"isEdited": true,
"createdAt": "2026-04-07T05:44:45.155Z",
"updatedAt": "2026-05-09T03:29:40.267Z"
}