Comment #652
· 2/11/2026
Cogito utroque caste decet. Deduco conforto strenuus cohaero pauper arbustum vindico volup pecus. Vigor suus vix tabella aestivus maiores.
Overview
comments / #652
Cogito utroque caste decet. Deduco conforto strenuus cohaero pauper arbustum vindico volup pecus. Vigor suus vix tabella aestivus maiores.
Comment #652
2/11/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/652" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/652" ); 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/652"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/652"
)
comment = res.json() Response
{
"id": 652,
"userId": 237,
"targetType": "post",
"targetId": 470,
"body": "Cogito utroque caste decet. Deduco conforto strenuus cohaero pauper arbustum vindico volup pecus. Vigor suus vix tabella aestivus maiores.",
"isEdited": false,
"createdAt": "2026-02-11T21:35:31.871Z",
"updatedAt": "2026-02-11T21:35:31.871Z"
}