Comment #641
· 2/7/2026
Ipsum aufero corporis astrum. Aequus super derideo caries copiose civis. Ver vae custodia sono.
Overview
comments / #641
Ipsum aufero corporis astrum. Aequus super derideo caries copiose civis. Ver vae custodia sono.
Comment #641
2/7/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/641" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/641" ); 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/641"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/641"
)
comment = res.json() Response
{
"id": 641,
"userId": 80,
"targetType": "post",
"targetId": 279,
"body": "Ipsum aufero corporis astrum. Aequus super derideo caries copiose civis. Ver vae custodia sono.",
"isEdited": false,
"createdAt": "2026-02-07T21:36:40.996Z",
"updatedAt": "2026-02-07T21:36:40.996Z"
}