Comment #457
· 10/15/2025
Candidus temeritas velit comparo aeternus rerum ara vulnus pel crur. Cubo eveniet patruus.
Overview
comments / #457
Candidus temeritas velit comparo aeternus rerum ara vulnus pel crur. Cubo eveniet patruus.
Comment #457
10/15/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/457" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/457" ); 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/457"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/457"
)
comment = res.json() Response
{
"id": 457,
"userId": 30,
"targetType": "post",
"targetId": 2,
"body": "Candidus temeritas velit comparo aeternus rerum ara vulnus pel crur. Cubo eveniet patruus.",
"isEdited": false,
"createdAt": "2025-10-15T06:13:07.878Z",
"updatedAt": "2025-10-15T06:13:07.878Z"
}