Comment #1006
· 3/6/2026
Carpo suspendo desino velut caelestis cunae aperio creo tepidus eveniet. Contego convoco bene terebro amissio confido surgo. Volaticus tabgo vinco aduro. Tres addo alias calco.
Overview
comments / #1006
Carpo suspendo desino velut caelestis cunae aperio creo tepidus eveniet. Contego convoco bene terebro amissio confido surgo. Volaticus tabgo vinco aduro. Tres addo alias calco.
Comment #1006
3/6/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1006" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1006" ); 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/1006"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1006"
)
comment = res.json() Response
{
"id": 1006,
"userId": 242,
"targetType": "post",
"targetId": 233,
"body": "Carpo suspendo desino velut caelestis cunae aperio creo tepidus eveniet. Contego convoco bene terebro amissio confido surgo. Volaticus tabgo vinco aduro. Tres addo alias calco.",
"isEdited": false,
"createdAt": "2026-03-06T09:25:38.200Z",
"updatedAt": "2026-03-06T09:25:38.200Z"
}