Comment #253
· 7/4/2025
Textor curia convoco aveho vallum tot. Cupressus virga assumenda. Stultus amoveo angelus depraedor tam canonicus tam coaegresco.
Overview
comments / #253
Textor curia convoco aveho vallum tot. Cupressus virga assumenda. Stultus amoveo angelus depraedor tam canonicus tam coaegresco.
Comment #253
7/4/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/253" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/253" ); 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/253"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/253"
)
comment = res.json() Response
{
"id": 253,
"userId": 109,
"targetType": "post",
"targetId": 134,
"body": "Textor curia convoco aveho vallum tot. Cupressus virga assumenda. Stultus amoveo angelus depraedor tam canonicus tam coaegresco.",
"isEdited": true,
"createdAt": "2025-07-04T04:09:16.675Z",
"updatedAt": "2025-09-04T02:06:39.328Z"
}