example-data.com
Menu
Browse docs and collections

Overview

comments / #144

Comment #144

· 3/20/2026

Voluntarius curriculum cicuta decimus absconditus unde utroque. Solum toties tredecim. Voluptas angustus curis aestus cerno. Avarus id quia victus apto abbas.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 144,
  "userId": 148,
  "targetType": "post",
  "targetId": 299,
  "body": "Voluntarius curriculum cicuta decimus absconditus unde utroque. Solum toties tredecim. Voluptas angustus curis aestus cerno. Avarus id quia victus apto abbas.",
  "isEdited": true,
  "createdAt": "2026-03-20T08:29:28.774Z",
  "updatedAt": "2026-03-27T13:04:51.821Z"
}