Comment #578
· 4/25/2026
Defessus aperiam theca adstringo tepidus absens. Ventito aegre earum cognatus creta terga damnatio laudantium pectus.
Overview
comments / #578
Defessus aperiam theca adstringo tepidus absens. Ventito aegre earum cognatus creta terga damnatio laudantium pectus.
Comment #578
4/25/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/578" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/578" ); 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/578"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/578"
)
comment = res.json() Response
{
"id": 578,
"userId": 148,
"targetType": "post",
"targetId": 49,
"body": "Defessus aperiam theca adstringo tepidus absens. Ventito aegre earum cognatus creta terga damnatio laudantium pectus.",
"isEdited": false,
"createdAt": "2026-04-25T14:02:59.449Z",
"updatedAt": "2026-04-25T14:02:59.449Z"
}