Comment #749
· 11/19/2025
Curso delectus volaticus dolorum verus cura video curtus copiose. Ciminatio vereor vobis demoror vitae.
Overview
comments / #749
Curso delectus volaticus dolorum verus cura video curtus copiose. Ciminatio vereor vobis demoror vitae.
Comment #749
11/19/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/749" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/749" ); 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/749"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/749"
)
comment = res.json() Response
{
"id": 749,
"userId": 199,
"targetType": "post",
"targetId": 419,
"body": "Curso delectus volaticus dolorum verus cura video curtus copiose. Ciminatio vereor vobis demoror vitae.",
"isEdited": false,
"createdAt": "2025-11-19T04:04:35.971Z",
"updatedAt": "2025-11-19T04:04:35.971Z"
}