Comment #803
· 8/23/2025
Advoco ad taedium aurum thorax nisi quam concedo.
Overview
comments / #803
Advoco ad taedium aurum thorax nisi quam concedo.
Comment #803
8/23/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/803" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/803" ); 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/803"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/803"
)
comment = res.json() Response
{
"id": 803,
"userId": 234,
"targetType": "post",
"targetId": 352,
"body": "Advoco ad taedium aurum thorax nisi quam concedo.",
"isEdited": true,
"createdAt": "2025-08-23T20:13:58.246Z",
"updatedAt": "2025-12-22T17:45:09.025Z"
}