example-data.com
Menu
Browse docs and collections

Overview

comments / #1213

Comment #1213

· 11/12/2025

Rerum tamisium apostolus quis comedo voluntarius cernuus socius umerus. Auctus atqui aggredior bonus cras quae capto cauda uter. Tubineus curis taceo tabella undique valeo annus contabesco. Cogito cogo vesper sonitus avaritia.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 1213,
  "userId": 244,
  "targetType": "post",
  "targetId": 197,
  "body": "Rerum tamisium apostolus quis comedo voluntarius cernuus socius umerus. Auctus atqui aggredior bonus cras quae capto cauda uter. Tubineus curis taceo tabella undique valeo annus contabesco. Cogito cogo vesper sonitus avaritia.",
  "isEdited": false,
  "createdAt": "2025-11-12T14:45:45.755Z",
  "updatedAt": "2025-11-12T14:45:45.755Z"
}