Comment #583
· 7/18/2025
Abeo pecus vero cultellus capillus iusto aureus aegrotatio commemoro curo. Neque ambulo ait suffragium vestigium decor caecus cibus.
Overview
comments / #583
Abeo pecus vero cultellus capillus iusto aureus aegrotatio commemoro curo. Neque ambulo ait suffragium vestigium decor caecus cibus.
Comment #583
7/18/2025
Request
curl example
curl -sS \ "https://example-data.com/api/v1/comments/583" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/comments/583" ); 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/583"
);
const comment = (await res.json()) as Comment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/comments/583"
)
comment = res.json() Response
{
"id": 583,
"userId": 33,
"targetType": "post",
"targetId": 94,
"body": "Abeo pecus vero cultellus capillus iusto aureus aegrotatio commemoro curo. Neque ambulo ait suffragium vestigium decor caecus cibus.",
"isEdited": false,
"createdAt": "2025-07-18T07:39:30.280Z",
"updatedAt": "2025-07-18T07:39:30.280Z"
}