Comment #1322
· 12/13/2025
Peior terreo tum tibi depulso thorax. Surgo beatae contabesco video. Antea vito theologus talus volva argentum sol absum baiulus ventus.
Overview
comments / #1322
Peior terreo tum tibi depulso thorax. Surgo beatae contabesco video. Antea vito theologus talus volva argentum sol absum baiulus ventus.
Comment #1322
12/13/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1322" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1322" ); 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/1322"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1322"
)
comment = res.json() Response
{
"id": 1322,
"userId": 162,
"targetType": "post",
"targetId": 399,
"body": "Peior terreo tum tibi depulso thorax. Surgo beatae contabesco video. Antea vito theologus talus volva argentum sol absum baiulus ventus.",
"isEdited": false,
"createdAt": "2025-12-13T17:12:59.856Z",
"updatedAt": "2025-12-13T17:12:59.856Z"
}