Comment #1243
· 10/23/2025
Solio stipes caterva ratione amaritudo arcus ulterius.
Overview
comments / #1243
Solio stipes caterva ratione amaritudo arcus ulterius.
Comment #1243
10/23/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1243" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1243" ); 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/1243"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1243"
)
comment = res.json() Response
{
"id": 1243,
"userId": 91,
"targetType": "post",
"targetId": 25,
"body": "Solio stipes caterva ratione amaritudo arcus ulterius.",
"isEdited": false,
"createdAt": "2025-10-23T19:50:25.568Z",
"updatedAt": "2025-10-23T19:50:25.568Z"
}