Comment #1211
· 12/2/2025
Sumo tabella vorago quos ex comburo vomer dapifer debeo. Similique coniecto auditor artificiose cruciamentum. Autem patrocinor damno caveo.
Overview
comments / #1211
Sumo tabella vorago quos ex comburo vomer dapifer debeo. Similique coniecto auditor artificiose cruciamentum. Autem patrocinor damno caveo.
Comment #1211
12/2/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1211" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1211" ); 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/1211"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1211"
)
comment = res.json() Response
{
"id": 1211,
"userId": 212,
"targetType": "post",
"targetId": 122,
"body": "Sumo tabella vorago quos ex comburo vomer dapifer debeo. Similique coniecto auditor artificiose cruciamentum. Autem patrocinor damno caveo.",
"isEdited": false,
"createdAt": "2025-12-02T19:49:09.287Z",
"updatedAt": "2025-12-02T19:49:09.287Z"
}