Comment #632
· 5/24/2025
Spes allatus tripudio summisse autus decipio asper cruciamentum. Amitto peior tabesco asperiores accusator.
Overview
comments / #632
Spes allatus tripudio summisse autus decipio asper cruciamentum. Amitto peior tabesco asperiores accusator.
Comment #632
5/24/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/632" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/632" ); 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/632"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/632"
)
comment = res.json() Response
{
"id": 632,
"userId": 28,
"targetType": "post",
"targetId": 344,
"body": "Spes allatus tripudio summisse autus decipio asper cruciamentum. Amitto peior tabesco asperiores accusator.",
"isEdited": false,
"createdAt": "2025-05-24T03:42:39.028Z",
"updatedAt": "2025-05-24T03:42:39.028Z"
}