Comment #1053
· 1/5/2025
Curia bos vicissitudo.
Overview
comments / #1053
Curia bos vicissitudo.
Comment #1053
1/5/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1053" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1053" ); 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/1053"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1053"
)
comment = res.json() Response
{
"id": 1053,
"userId": 159,
"targetType": "post",
"targetId": 324,
"body": "Curia bos vicissitudo.",
"isEdited": false,
"createdAt": "2025-01-05T21:08:35.298Z",
"updatedAt": "2025-01-05T21:08:35.298Z"
}