Comment #590
· 3/27/2026
Causa turbo alii aegrotatio repellat credo delicate administratio. Cupiditas charisma culpo tabella.
Overview
comments / #590
Causa turbo alii aegrotatio repellat credo delicate administratio. Cupiditas charisma culpo tabella.
Comment #590
3/27/2026
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/590" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/590" ); 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/590"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/590"
)
comment = res.json() Response
{
"id": 590,
"userId": 227,
"targetType": "post",
"targetId": 144,
"body": "Causa turbo alii aegrotatio repellat credo delicate administratio. Cupiditas charisma culpo tabella.",
"isEdited": false,
"createdAt": "2026-03-27T11:51:57.881Z",
"updatedAt": "2026-03-27T11:51:57.881Z"
}