example-data.com
Menu
Browse docs and collections

Overview

comments / #553

Comment #553

· 6/9/2025

Clementia paulatim acquiro tersus adulescens beneficium error vitiosus tui angulus. Provident blandior trucido uberrime acer recusandae sono uxor. Sono spoliatio fugit curatio atavus tametsi fugiat quibusdam trepide. Viriliter valetudo tracto ascisco desino totidem cumque ademptio ustulo patruus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 553,
  "userId": 65,
  "targetType": "post",
  "targetId": 178,
  "body": "Clementia paulatim acquiro tersus adulescens beneficium error vitiosus tui angulus. Provident blandior trucido uberrime acer recusandae sono uxor. Sono spoliatio fugit curatio atavus tametsi fugiat quibusdam trepide. Viriliter valetudo tracto ascisco desino totidem cumque ademptio ustulo patruus.",
  "isEdited": false,
  "createdAt": "2025-06-09T03:42:58.036Z",
  "updatedAt": "2025-06-09T03:42:58.036Z"
}