Comment #1362
· 5/13/2025
Dedico communis calcar.
Overview
comments / #1362
Dedico communis calcar.
Comment #1362
5/13/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1362" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1362" ); 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/1362"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1362"
)
comment = res.json() Response
{
"id": 1362,
"userId": 106,
"targetType": "post",
"targetId": 331,
"body": "Dedico communis calcar.",
"isEdited": false,
"createdAt": "2025-05-13T14:42:35.633Z",
"updatedAt": "2025-05-13T14:42:35.633Z"
}