Comment #98
· 10/7/2025
Ratione eaque textor. Quae caput crustulum cerno conventus thorax corporis amoveo cotidie. Calcar spoliatio illum paens. Vetus qui spargo hic confugo cognomen.
Overview
comments / #98
Ratione eaque textor. Quae caput crustulum cerno conventus thorax corporis amoveo cotidie. Calcar spoliatio illum paens. Vetus qui spargo hic confugo cognomen.
Comment #98
10/7/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/98" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/98" ); 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/98"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/98"
)
comment = res.json() Response
{
"id": 98,
"userId": 192,
"targetType": "post",
"targetId": 71,
"body": "Ratione eaque textor. Quae caput crustulum cerno conventus thorax corporis amoveo cotidie. Calcar spoliatio illum paens. Vetus qui spargo hic confugo cognomen.",
"isEdited": false,
"createdAt": "2025-10-07T23:25:27.361Z",
"updatedAt": "2025-10-07T23:25:27.361Z"
}