example-data.com
Menu
Browse docs and collections

Overview

comments / #507

Comment #507

· 5/18/2026

Curatio alioqui totus alius vilis aperio calco speciosus cubicularis. Suffragium synagoga tabella suscipio tremo aperiam cunabula bos usus. Uxor bellicus eius admoveo tantum cunae viscus velut colligo paulatim. Quidem viscus inventore sursum trepide custodia.

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/comments/507" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/comments/507"
);
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/507"
);
const comment = (await res.json()) as Comment;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/comments/507"
)
comment = res.json()

Response

{
  "id": 507,
  "userId": 72,
  "targetType": "post",
  "targetId": 269,
  "body": "Curatio alioqui totus alius vilis aperio calco speciosus cubicularis. Suffragium synagoga tabella suscipio tremo aperiam cunabula bos usus. Uxor bellicus eius admoveo tantum cunae viscus velut colligo paulatim. Quidem viscus inventore sursum trepide custodia.",
  "isEdited": true,
  "createdAt": "2026-05-18T14:15:57.646Z",
  "updatedAt": "2026-05-21T09:03:35.596Z"
}