Comment #1147
· 5/29/2025
Alioqui socius cribro aeternus cornu. Stips defetiscor tendo textilis beatae. Paens altus thymbra cupio. Arcesso universe tertius.
Overview
comments / #1147
Alioqui socius cribro aeternus cornu. Stips defetiscor tendo textilis beatae. Paens altus thymbra cupio. Arcesso universe tertius.
Comment #1147
5/29/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1147" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1147" ); 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/1147"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1147"
)
comment = res.json() Response
{
"id": 1147,
"userId": 180,
"targetType": "post",
"targetId": 481,
"body": "Alioqui socius cribro aeternus cornu. Stips defetiscor tendo textilis beatae. Paens altus thymbra cupio. Arcesso universe tertius.",
"isEdited": false,
"createdAt": "2025-05-29T05:19:03.160Z",
"updatedAt": "2025-05-29T05:19:03.160Z"
}