Comment #19
· 4/28/2026
Desipio reiciendis delectatio sui decet solutio torrens valens totam.
Overview
comments / #19
Desipio reiciendis delectatio sui decet solutio torrens valens totam.
Comment #19
4/28/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/19" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/19" ); 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/19"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/19"
)
comment = res.json() Response
{
"id": 19,
"userId": 22,
"targetType": "post",
"targetId": 110,
"body": "Desipio reiciendis delectatio sui decet solutio torrens valens totam.",
"isEdited": false,
"createdAt": "2026-04-28T23:36:18.200Z",
"updatedAt": "2026-04-28T23:36:18.200Z"
}