Comment #1293
· 3/9/2026
Aveho vicissitudo amiculum copiose termes cupressus argentum. Delego solio tamquam. Cuius colligo dens facilis corrumpo vulgus sordeo vulgivagus.
Overview
comments / #1293
Aveho vicissitudo amiculum copiose termes cupressus argentum. Delego solio tamquam. Cuius colligo dens facilis corrumpo vulgus sordeo vulgivagus.
Comment #1293
3/9/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1293" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1293" ); 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/1293"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1293"
)
comment = res.json() Response
{
"id": 1293,
"userId": 31,
"targetType": "post",
"targetId": 78,
"body": "Aveho vicissitudo amiculum copiose termes cupressus argentum. Delego solio tamquam. Cuius colligo dens facilis corrumpo vulgus sordeo vulgivagus.",
"isEdited": false,
"createdAt": "2026-03-09T03:18:46.408Z",
"updatedAt": "2026-03-09T03:18:46.408Z"
}