Comment #527
· 5/13/2025
Abbas acies architecto angustus.
Overview
comments / #527
Abbas acies architecto angustus.
Comment #527
5/13/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/527" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/527" ); 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/527"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/527"
)
comment = res.json() Response
{
"id": 527,
"userId": 148,
"targetType": "post",
"targetId": 138,
"body": "Abbas acies architecto angustus.",
"isEdited": true,
"createdAt": "2025-05-13T09:32:19.941Z",
"updatedAt": "2025-07-31T15:15:26.005Z"
}