Comment #194
· 12/22/2025
Tracto ipsam corrumpo eveniet crustulum auditor comes thymbra. Corrupti vis mollitia cohaero aufero. Omnis virga advenio numquam.
Overview
comments / #194
Tracto ipsam corrumpo eveniet crustulum auditor comes thymbra. Corrupti vis mollitia cohaero aufero. Omnis virga advenio numquam.
Comment #194
12/22/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/194" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/194" ); 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/194"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/194"
)
comment = res.json() Response
{
"id": 194,
"userId": 184,
"targetType": "post",
"targetId": 28,
"body": "Tracto ipsam corrumpo eveniet crustulum auditor comes thymbra. Corrupti vis mollitia cohaero aufero. Omnis virga advenio numquam.",
"isEdited": false,
"createdAt": "2025-12-22T22:55:57.421Z",
"updatedAt": "2025-12-22T22:55:57.421Z"
}