Comment #623
· 12/4/2025
Articulus desolo talus vehemens impedit. Cresco cresco claro.
Overview
comments / #623
Articulus desolo talus vehemens impedit. Cresco cresco claro.
Comment #623
12/4/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/623" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/623" ); 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/623"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/623"
)
comment = res.json() Response
{
"id": 623,
"userId": 208,
"targetType": "post",
"targetId": 276,
"body": "Articulus desolo talus vehemens impedit. Cresco cresco claro.",
"isEdited": true,
"createdAt": "2025-12-04T13:08:05.190Z",
"updatedAt": "2026-01-11T13:45:36.415Z"
}