Comment #292
· 3/3/2025
Fuga suffragium maiores suffragium quidem voluntarius unde. Arca vicissitudo testimonium amaritudo.
Overview
comments / #292
Fuga suffragium maiores suffragium quidem voluntarius unde. Arca vicissitudo testimonium amaritudo.
Comment #292
3/3/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/292" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/292" ); 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/292"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/292"
)
comment = res.json() Response
{
"id": 292,
"userId": 102,
"targetType": "post",
"targetId": 331,
"body": "Fuga suffragium maiores suffragium quidem voluntarius unde. Arca vicissitudo testimonium amaritudo.",
"isEdited": false,
"createdAt": "2025-03-03T22:41:55.916Z",
"updatedAt": "2025-03-03T22:41:55.916Z"
}