Comment #649
· 6/5/2025
Cena thesis tametsi cogito deputo. Delectatio caterva pauper creator volubilis nostrum. Voluptatem ascit amaritudo accusantium deprimo comparo cohibeo architecto torrens.
Overview
comments / #649
Cena thesis tametsi cogito deputo. Delectatio caterva pauper creator volubilis nostrum. Voluptatem ascit amaritudo accusantium deprimo comparo cohibeo architecto torrens.
Comment #649
6/5/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/649" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/649" ); 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/649"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/649"
)
comment = res.json() Response
{
"id": 649,
"userId": 141,
"targetType": "post",
"targetId": 306,
"body": "Cena thesis tametsi cogito deputo. Delectatio caterva pauper creator volubilis nostrum. Voluptatem ascit amaritudo accusantium deprimo comparo cohibeo architecto torrens.",
"isEdited": false,
"createdAt": "2025-06-05T01:07:27.889Z",
"updatedAt": "2025-06-05T01:07:27.889Z"
}