Comment #1329
· 2/17/2026
Curtus dignissimos cotidie charisma civis cedo curis vociferor ab.
Overview
comments / #1329
Curtus dignissimos cotidie charisma civis cedo curis vociferor ab.
Comment #1329
2/17/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1329" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1329" ); 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/1329"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1329"
)
comment = res.json() Response
{
"id": 1329,
"userId": 167,
"targetType": "post",
"targetId": 123,
"body": "Curtus dignissimos cotidie charisma civis cedo curis vociferor ab.",
"isEdited": false,
"createdAt": "2026-02-17T19:22:48.856Z",
"updatedAt": "2026-02-17T19:22:48.856Z"
}