Comment #887
· 8/15/2025
Villa cetera bibo. Usque tum canonicus currus tergeo vapulus spes vita super creator.
Overview
comments / #887
Villa cetera bibo. Usque tum canonicus currus tergeo vapulus spes vita super creator.
Comment #887
8/15/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/887" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/887" ); 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/887"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/887"
)
comment = res.json() Response
{
"id": 887,
"userId": 171,
"targetType": "post",
"targetId": 274,
"body": "Villa cetera bibo. Usque tum canonicus currus tergeo vapulus spes vita super creator.",
"isEdited": false,
"createdAt": "2025-08-15T04:15:48.906Z",
"updatedAt": "2025-08-15T04:15:48.906Z"
}