Comment #1455
· 4/24/2026
Aspernatur bos traho uter delectus aestus calco benevolentia spectaculum voro. Officia sustineo saepe.
Overview
comments / #1455
Aspernatur bos traho uter delectus aestus calco benevolentia spectaculum voro. Officia sustineo saepe.
Comment #1455
4/24/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1455" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1455" ); 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/1455"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1455"
)
comment = res.json() Response
{
"id": 1455,
"userId": 205,
"targetType": "post",
"targetId": 360,
"body": "Aspernatur bos traho uter delectus aestus calco benevolentia spectaculum voro. Officia sustineo saepe.",
"isEdited": false,
"createdAt": "2026-04-24T15:24:26.126Z",
"updatedAt": "2026-04-24T15:24:26.126Z"
}