example-data.com
Menu
Browse docs and collections

Overview

comments / #104

Comment #104

· 2/17/2026

Brevis sono sponte desipio concedo abutor odio perspiciatis. Agnitio creptio defetiscor atrocitas virtus valeo. Tepidus crinis admitto libero sub subito provident vomito. Degenero dedecor tempus omnis uredo solium.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 104,
  "userId": 238,
  "targetType": "post",
  "targetId": 434,
  "body": "Brevis sono sponte desipio concedo abutor odio perspiciatis. Agnitio creptio defetiscor atrocitas virtus valeo. Tepidus crinis admitto libero sub subito provident vomito. Degenero dedecor tempus omnis uredo solium.",
  "isEdited": false,
  "createdAt": "2026-02-17T01:37:26.817Z",
  "updatedAt": "2026-02-17T01:37:26.817Z"
}