Comment #1207
· 12/5/2025
Dolorem clam atrox desino. Laboriosam accusator suus blanditiis summisse canto velut ait ver. Autem repudiandae volup cogo terra tepesco inflammatio.
Overview
comments / #1207
Dolorem clam atrox desino. Laboriosam accusator suus blanditiis summisse canto velut ait ver. Autem repudiandae volup cogo terra tepesco inflammatio.
Comment #1207
12/5/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1207" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1207" ); 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/1207"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1207"
)
comment = res.json() Response
{
"id": 1207,
"userId": 104,
"targetType": "post",
"targetId": 405,
"body": "Dolorem clam atrox desino. Laboriosam accusator suus blanditiis summisse canto velut ait ver. Autem repudiandae volup cogo terra tepesco inflammatio.",
"isEdited": false,
"createdAt": "2025-12-05T15:37:11.071Z",
"updatedAt": "2025-12-05T15:37:11.071Z"
}