Comment #886
· 8/29/2025
Cruentus taceo aer voluntarius vilitas tepidus artificiose. Bellicus vaco conduco perspiciatis accommodo animadverto. Cibo vomica vomito sto ullam.
Overview
comments / #886
Cruentus taceo aer voluntarius vilitas tepidus artificiose. Bellicus vaco conduco perspiciatis accommodo animadverto. Cibo vomica vomito sto ullam.
Comment #886
8/29/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/886" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/886" ); 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/886"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/886"
)
comment = res.json() Response
{
"id": 886,
"userId": 208,
"targetType": "post",
"targetId": 83,
"body": "Cruentus taceo aer voluntarius vilitas tepidus artificiose. Bellicus vaco conduco perspiciatis accommodo animadverto. Cibo vomica vomito sto ullam.",
"isEdited": false,
"createdAt": "2025-08-29T12:53:18.162Z",
"updatedAt": "2025-08-29T12:53:18.162Z"
}