Comment #908
· 10/16/2025
Terror vulgaris demoror tabula tabgo aro. Ambulo depraedor utpote volup fuga inventore comptus cupiditate. Virga adnuo confero acquiro.
Overview
comments / #908
Terror vulgaris demoror tabula tabgo aro. Ambulo depraedor utpote volup fuga inventore comptus cupiditate. Virga adnuo confero acquiro.
Comment #908
10/16/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/908" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/908" ); 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/908"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/908"
)
comment = res.json() Response
{
"id": 908,
"userId": 155,
"targetType": "post",
"targetId": 243,
"body": "Terror vulgaris demoror tabula tabgo aro. Ambulo depraedor utpote volup fuga inventore comptus cupiditate. Virga adnuo confero acquiro.",
"isEdited": false,
"createdAt": "2025-10-16T14:18:15.977Z",
"updatedAt": "2025-10-16T14:18:15.977Z"
}