Comment #651
· 8/26/2025
Venio capillus alius eius. Depono infit cotidie.
Overview
comments / #651
Venio capillus alius eius. Depono infit cotidie.
Comment #651
8/26/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/651" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/651" ); 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/651"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/651"
)
comment = res.json() Response
{
"id": 651,
"userId": 226,
"targetType": "post",
"targetId": 141,
"body": "Venio capillus alius eius. Depono infit cotidie.",
"isEdited": false,
"createdAt": "2025-08-26T13:56:59.646Z",
"updatedAt": "2025-08-26T13:56:59.646Z"
}