example-data.com
Menu
Browse docs and collections

Overview

comments / #214

Comment #214

· 11/17/2025

Sequi amor deserunt conatus comptus surgo admitto. Clam video adipiscor demonstro ex inflammatio animadverto. Thesis talus deprecator mollitia vita suffragium varius argentum texo absconditus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 214,
  "userId": 1,
  "targetType": "post",
  "targetId": 241,
  "body": "Sequi amor deserunt conatus comptus surgo admitto. Clam video adipiscor demonstro ex inflammatio animadverto. Thesis talus deprecator mollitia vita suffragium varius argentum texo absconditus.",
  "isEdited": false,
  "createdAt": "2025-11-17T07:03:54.884Z",
  "updatedAt": "2025-11-17T07:03:54.884Z"
}