Comment #655
· 5/12/2025
Vulgo coadunatio subito caries adipiscor arca. Deleo adamo vesper cupressus maiores ulciscor voro teneo usque vilis. Abbas cetera cursus vigilo supellex.
Overview
comments / #655
Vulgo coadunatio subito caries adipiscor arca. Deleo adamo vesper cupressus maiores ulciscor voro teneo usque vilis. Abbas cetera cursus vigilo supellex.
Comment #655
5/12/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/655" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/655" ); 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/655"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/655"
)
comment = res.json() Response
{
"id": 655,
"userId": 94,
"targetType": "post",
"targetId": 392,
"body": "Vulgo coadunatio subito caries adipiscor arca. Deleo adamo vesper cupressus maiores ulciscor voro teneo usque vilis. Abbas cetera cursus vigilo supellex.",
"isEdited": false,
"createdAt": "2025-05-12T08:20:51.093Z",
"updatedAt": "2025-05-12T08:20:51.093Z"
}