Comment #724
· 4/9/2025
Beneficium pariatur virtus casus provident deficio vicissitudo termes architecto. Caecus abbas deporto ut. Vobis demum solum minus decens convoco ver.
Overview
comments / #724
Beneficium pariatur virtus casus provident deficio vicissitudo termes architecto. Caecus abbas deporto ut. Vobis demum solum minus decens convoco ver.
Comment #724
4/9/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/724" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/724" ); 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/724"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/724"
)
comment = res.json() Response
{
"id": 724,
"userId": 131,
"targetType": "post",
"targetId": 470,
"body": "Beneficium pariatur virtus casus provident deficio vicissitudo termes architecto. Caecus abbas deporto ut. Vobis demum solum minus decens convoco ver.",
"isEdited": false,
"createdAt": "2025-04-09T12:13:45.689Z",
"updatedAt": "2025-04-09T12:13:45.689Z"
}