Comment #1499
· 3/8/2025
Aestus cribro delectus crur stipes vitae. Illo denuncio caveo decens volubilis despecto vester vivo.
Overview
comments / #1499
Aestus cribro delectus crur stipes vitae. Illo denuncio caveo decens volubilis despecto vester vivo.
Comment #1499
3/8/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1499" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1499" ); 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/1499"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1499"
)
comment = res.json() Response
{
"id": 1499,
"userId": 226,
"targetType": "post",
"targetId": 56,
"body": "Aestus cribro delectus crur stipes vitae. Illo denuncio caveo decens volubilis despecto vester vivo.",
"isEdited": false,
"createdAt": "2025-03-08T07:09:36.334Z",
"updatedAt": "2025-03-08T07:09:36.334Z"
}