Comment #445
· 2/6/2025
Speciosus appono tredecim volup uter quisquam statua caelum aequitas deinde. A enim bis ancilla exercitationem. Quae tendo deludo angustus adeptio deleo tandem cado sortitus minima.
Overview
comments / #445
Speciosus appono tredecim volup uter quisquam statua caelum aequitas deinde. A enim bis ancilla exercitationem. Quae tendo deludo angustus adeptio deleo tandem cado sortitus minima.
Comment #445
2/6/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/445" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/445" ); 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/445"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/445"
)
comment = res.json() Response
{
"id": 445,
"userId": 126,
"targetType": "post",
"targetId": 454,
"body": "Speciosus appono tredecim volup uter quisquam statua caelum aequitas deinde. A enim bis ancilla exercitationem. Quae tendo deludo angustus adeptio deleo tandem cado sortitus minima.",
"isEdited": false,
"createdAt": "2025-02-06T13:34:13.610Z",
"updatedAt": "2025-02-06T13:34:13.610Z"
}