Comment #881
· 12/15/2025
Communis artificiose thymum umquam copia conqueror harum. Comptus tenax certe cura creator excepturi tabula. Patior compello balbus adicio copiose ars.
Overview
comments / #881
Communis artificiose thymum umquam copia conqueror harum. Comptus tenax certe cura creator excepturi tabula. Patior compello balbus adicio copiose ars.
Comment #881
12/15/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/881" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/881" ); 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/881"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/881"
)
comment = res.json() Response
{
"id": 881,
"userId": 89,
"targetType": "post",
"targetId": 36,
"body": "Communis artificiose thymum umquam copia conqueror harum. Comptus tenax certe cura creator excepturi tabula. Patior compello balbus adicio copiose ars.",
"isEdited": false,
"createdAt": "2025-12-15T21:21:32.991Z",
"updatedAt": "2025-12-15T21:21:32.991Z"
}