Comment #283
· 12/5/2025
Angulus cultura derelinquo adamo amplus comburo verbera angustus paens. Acidus caterva victoria. Argentum corrupti fugit.
Overview
comments / #283
Angulus cultura derelinquo adamo amplus comburo verbera angustus paens. Acidus caterva victoria. Argentum corrupti fugit.
Comment #283
12/5/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/283" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/283" ); 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/283"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/283"
)
comment = res.json() Response
{
"id": 283,
"userId": 57,
"targetType": "post",
"targetId": 256,
"body": "Angulus cultura derelinquo adamo amplus comburo verbera angustus paens. Acidus caterva victoria. Argentum corrupti fugit.",
"isEdited": false,
"createdAt": "2025-12-05T19:57:33.753Z",
"updatedAt": "2025-12-05T19:57:33.753Z"
}