Comment #1484
· 5/14/2026
Undique unus depopulo rem administratio. Culpa animi tremo deleniti curatio antepono adflicto.
Overview
comments / #1484
Undique unus depopulo rem administratio. Culpa animi tremo deleniti curatio antepono adflicto.
Comment #1484
5/14/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/1484" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/1484" ); 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/1484"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/1484"
)
comment = res.json() Response
{
"id": 1484,
"userId": 32,
"targetType": "post",
"targetId": 45,
"body": "Undique unus depopulo rem administratio. Culpa animi tremo deleniti curatio antepono adflicto.",
"isEdited": false,
"createdAt": "2026-05-14T23:15:35.585Z",
"updatedAt": "2026-05-14T23:15:35.585Z"
}