Comment #1011
· 11/21/2025
Aptus eius arbustum pauper. Facere molestias facilis.
Overview
comments / #1011
Aptus eius arbustum pauper. Facere molestias facilis.
Comment #1011
11/21/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1011" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1011" ); 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/1011"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1011"
)
comment = res.json() Response
{
"id": 1011,
"userId": 173,
"targetType": "post",
"targetId": 159,
"body": "Aptus eius arbustum pauper. Facere molestias facilis.",
"isEdited": false,
"createdAt": "2025-11-21T18:16:42.835Z",
"updatedAt": "2025-11-21T18:16:42.835Z"
}