Comment #1143
· 8/26/2025
Creo audacia arca amo carmen ultra.
Overview
comments / #1143
Creo audacia arca amo carmen ultra.
Comment #1143
8/26/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1143" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1143" ); 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/1143"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1143"
)
comment = res.json() Response
{
"id": 1143,
"userId": 180,
"targetType": "post",
"targetId": 18,
"body": "Creo audacia arca amo carmen ultra.",
"isEdited": false,
"createdAt": "2025-08-26T10:33:37.094Z",
"updatedAt": "2025-08-26T10:33:37.094Z"
}