Comment #593
· 4/23/2025
Utrum cunabula carmen talus admoveo fuga. Nesciunt caelum fuga crastinus caste sollicito aranea tergiversatio attollo vaco. Clam sublime venio cotidie audax tergiversatio.
Overview
comments / #593
Utrum cunabula carmen talus admoveo fuga. Nesciunt caelum fuga crastinus caste sollicito aranea tergiversatio attollo vaco. Clam sublime venio cotidie audax tergiversatio.
Comment #593
4/23/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/593" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/593" ); 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/593"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/593"
)
comment = res.json() Response
{
"id": 593,
"userId": 47,
"targetType": "post",
"targetId": 179,
"body": "Utrum cunabula carmen talus admoveo fuga. Nesciunt caelum fuga crastinus caste sollicito aranea tergiversatio attollo vaco. Clam sublime venio cotidie audax tergiversatio.",
"isEdited": false,
"createdAt": "2025-04-23T21:37:24.704Z",
"updatedAt": "2025-04-23T21:37:24.704Z"
}