Comment #1318
· 5/2/2025
Impedit cubicularis solvo degenero arma carbo pauci bis cattus texo. Vos tabella cur caterva vociferor vinco nihil.
Overview
comments / #1318
Impedit cubicularis solvo degenero arma carbo pauci bis cattus texo. Vos tabella cur caterva vociferor vinco nihil.
Comment #1318
5/2/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1318" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1318" ); 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/1318"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1318"
)
comment = res.json() Response
{
"id": 1318,
"userId": 189,
"targetType": "post",
"targetId": 253,
"body": "Impedit cubicularis solvo degenero arma carbo pauci bis cattus texo. Vos tabella cur caterva vociferor vinco nihil.",
"isEdited": false,
"createdAt": "2025-05-02T00:19:38.464Z",
"updatedAt": "2025-05-02T00:19:38.464Z"
}