Comment #64
· 7/26/2025
Tripudio excepturi cohors. Deporto defendo corrumpo sed crustulum. Solium utrum vorago cursus tardus curo aestus spero.
Overview
comments / #64
Tripudio excepturi cohors. Deporto defendo corrumpo sed crustulum. Solium utrum vorago cursus tardus curo aestus spero.
Comment #64
7/26/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/64" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/64" ); 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/64"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/64"
)
comment = res.json() Response
{
"id": 64,
"userId": 146,
"targetType": "post",
"targetId": 119,
"body": "Tripudio excepturi cohors. Deporto defendo corrumpo sed crustulum. Solium utrum vorago cursus tardus curo aestus spero.",
"isEdited": true,
"createdAt": "2025-07-26T18:30:42.454Z",
"updatedAt": "2025-08-11T23:40:45.520Z"
}