Comment #1172
· 10/14/2025
Complectus unde eveniet decor. Cognatus soluta ambulo celo circumvenio anser. Volo acer necessitatibus.
Overview
comments / #1172
Complectus unde eveniet decor. Cognatus soluta ambulo celo circumvenio anser. Volo acer necessitatibus.
Comment #1172
10/14/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1172" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1172" ); 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/1172"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1172"
)
comment = res.json() Response
{
"id": 1172,
"userId": 50,
"targetType": "post",
"targetId": 313,
"body": "Complectus unde eveniet decor. Cognatus soluta ambulo celo circumvenio anser. Volo acer necessitatibus.",
"isEdited": false,
"createdAt": "2025-10-14T03:39:35.275Z",
"updatedAt": "2025-10-14T03:39:35.275Z"
}