Comment #113
· 6/24/2025
Degusto cogito suppellex ambulo amplitudo deficio iusto delicate. Decimus aggredior voluptate suppono despecto synagoga tamdiu. Vitium corrigo aspicio cohibeo auditor.
Overview
comments / #113
Degusto cogito suppellex ambulo amplitudo deficio iusto delicate. Decimus aggredior voluptate suppono despecto synagoga tamdiu. Vitium corrigo aspicio cohibeo auditor.
Comment #113
6/24/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/113" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/113" ); 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/113"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/113"
)
comment = res.json() Response
{
"id": 113,
"userId": 51,
"targetType": "post",
"targetId": 105,
"body": "Degusto cogito suppellex ambulo amplitudo deficio iusto delicate. Decimus aggredior voluptate suppono despecto synagoga tamdiu. Vitium corrigo aspicio cohibeo auditor.",
"isEdited": false,
"createdAt": "2025-06-24T11:03:31.018Z",
"updatedAt": "2025-06-24T11:03:31.018Z"
}