Comment #233
· 12/7/2025
Arbor creptio vae super stips complectus tutis ager consectetur. Defessus cado laudantium temperantia eius confugo paens possimus quos ultio.
Overview
comments / #233
Arbor creptio vae super stips complectus tutis ager consectetur. Defessus cado laudantium temperantia eius confugo paens possimus quos ultio.
Comment #233
12/7/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/233" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/233" ); 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/233"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/233"
)
comment = res.json() Response
{
"id": 233,
"userId": 24,
"targetType": "post",
"targetId": 321,
"body": "Arbor creptio vae super stips complectus tutis ager consectetur. Defessus cado laudantium temperantia eius confugo paens possimus quos ultio.",
"isEdited": false,
"createdAt": "2025-12-07T12:46:32.580Z",
"updatedAt": "2025-12-07T12:46:32.580Z"
}