Comment #1314
· 5/19/2026
Voluptatum ex clementia utique arbustum deleo delego auctus aer deporto.
Overview
comments / #1314
Voluptatum ex clementia utique arbustum deleo delego auctus aer deporto.
Comment #1314
5/19/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1314" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1314" ); 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/1314"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1314"
)
comment = res.json() Response
{
"id": 1314,
"userId": 80,
"targetType": "post",
"targetId": 129,
"body": "Voluptatum ex clementia utique arbustum deleo delego auctus aer deporto.",
"isEdited": false,
"createdAt": "2026-05-19T17:40:45.380Z",
"updatedAt": "2026-05-19T17:40:45.380Z"
}