Comment #1425
· 1/9/2026
Deludo spero accedo thymum acerbitas.
Overview
comments / #1425
Deludo spero accedo thymum acerbitas.
Comment #1425
1/9/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1425" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1425" ); 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/1425"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1425"
)
comment = res.json() Response
{
"id": 1425,
"userId": 119,
"targetType": "post",
"targetId": 56,
"body": "Deludo spero accedo thymum acerbitas.",
"isEdited": true,
"createdAt": "2026-01-09T09:33:45.948Z",
"updatedAt": "2026-04-14T00:55:01.254Z"
}