Comment #237
· 9/17/2025
Acceptus asper deleniti sui spectaculum terga tamquam. Talio synagoga curiositas ascit.
Overview
comments / #237
Acceptus asper deleniti sui spectaculum terga tamquam. Talio synagoga curiositas ascit.
Comment #237
9/17/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/237" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/237" ); 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/237"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/237"
)
comment = res.json() Response
{
"id": 237,
"userId": 1,
"targetType": "post",
"targetId": 444,
"body": "Acceptus asper deleniti sui spectaculum terga tamquam. Talio synagoga curiositas ascit.",
"isEdited": false,
"createdAt": "2025-09-17T22:14:37.720Z",
"updatedAt": "2025-09-17T22:14:37.720Z"
}