example-data.com
Menu
Browse docs and collections

Overview

comments / #644

Comment #644

· 1/9/2026

Canto verus quis appono. Cena canonicus spectaculum aeger absens alveus. Occaecati theatrum approbo calco reprehenderit vicissitudo baiulus stillicidium spes viduo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 644,
  "userId": 10,
  "targetType": "post",
  "targetId": 382,
  "body": "Canto verus quis appono. Cena canonicus spectaculum aeger absens alveus. Occaecati theatrum approbo calco reprehenderit vicissitudo baiulus stillicidium spes viduo.",
  "isEdited": false,
  "createdAt": "2026-01-09T08:55:14.129Z",
  "updatedAt": "2026-01-09T08:55:14.129Z"
}