Comment #947
· 8/25/2025
Tracto supplanto avaritia curis appositus minima animus degenero tibi. Contra sordeo crur amita curatio ocer abutor cresco aperiam dedico.
Overview
comments / #947
Tracto supplanto avaritia curis appositus minima animus degenero tibi. Contra sordeo crur amita curatio ocer abutor cresco aperiam dedico.
Comment #947
8/25/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/947" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/947" ); 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/947"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/947"
)
comment = res.json() Response
{
"id": 947,
"userId": 89,
"targetType": "post",
"targetId": 189,
"body": "Tracto supplanto avaritia curis appositus minima animus degenero tibi. Contra sordeo crur amita curatio ocer abutor cresco aperiam dedico.",
"isEdited": false,
"createdAt": "2025-08-25T08:28:10.649Z",
"updatedAt": "2025-08-25T08:28:10.649Z"
}