Comment #1494
· 5/12/2025
Maxime decretum depopulo. Tribuo vigor taceo quis. Censura asper unus abundans creber reprehenderit vitium. Aegrotatio agnosco caries tot aeger.
Overview
comments / #1494
Maxime decretum depopulo. Tribuo vigor taceo quis. Censura asper unus abundans creber reprehenderit vitium. Aegrotatio agnosco caries tot aeger.
Comment #1494
5/12/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1494" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1494" ); 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/1494"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1494"
)
comment = res.json() Response
{
"id": 1494,
"userId": 161,
"targetType": "post",
"targetId": 335,
"body": "Maxime decretum depopulo. Tribuo vigor taceo quis. Censura asper unus abundans creber reprehenderit vitium. Aegrotatio agnosco caries tot aeger.",
"isEdited": false,
"createdAt": "2025-05-12T12:00:43.358Z",
"updatedAt": "2025-05-12T12:00:43.358Z"
}