Comment #756
· 7/10/2025
Beneficium deprecator cubo urbs utique ver. Celebrer velut et aegrotatio speciosus tergeo caste territo autus mollitia.
Overview
comments / #756
Beneficium deprecator cubo urbs utique ver. Celebrer velut et aegrotatio speciosus tergeo caste territo autus mollitia.
Comment #756
7/10/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/756" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/756" ); 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/756"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/756"
)
comment = res.json() Response
{
"id": 756,
"userId": 84,
"targetType": "post",
"targetId": 233,
"body": "Beneficium deprecator cubo urbs utique ver. Celebrer velut et aegrotatio speciosus tergeo caste territo autus mollitia.",
"isEdited": false,
"createdAt": "2025-07-10T22:10:02.187Z",
"updatedAt": "2025-07-10T22:10:02.187Z"
}