Comment #1332
· 12/20/2025
Ad casso aspernatur cribro coniecto comminor deleo ante maxime. Artificiose tergeo auxilium arx adinventitias. Autus clarus valens debilito.
Overview
comments / #1332
Ad casso aspernatur cribro coniecto comminor deleo ante maxime. Artificiose tergeo auxilium arx adinventitias. Autus clarus valens debilito.
Comment #1332
12/20/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1332" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1332" ); 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/1332"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1332"
)
comment = res.json() Response
{
"id": 1332,
"userId": 112,
"targetType": "post",
"targetId": 266,
"body": "Ad casso aspernatur cribro coniecto comminor deleo ante maxime. Artificiose tergeo auxilium arx adinventitias. Autus clarus valens debilito.",
"isEdited": false,
"createdAt": "2025-12-20T00:48:41.696Z",
"updatedAt": "2025-12-20T00:48:41.696Z"
}