example-data.com
Menu
Browse docs and collections

Overview

comments / #714

Comment #714

· 3/19/2026

Trucido carbo trans advoco claudeo adipisci provident admiratio totus. Bardus carmen basium aegre censura vallum tergum aestivus beatus. Voveo territo succurro defessus nemo accusantium abbas una.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 714,
  "userId": 97,
  "targetType": "post",
  "targetId": 129,
  "body": "Trucido carbo trans advoco claudeo adipisci provident admiratio totus. Bardus carmen basium aegre censura vallum tergum aestivus beatus. Voveo territo succurro defessus nemo accusantium abbas una.",
  "isEdited": false,
  "createdAt": "2026-03-19T03:12:01.600Z",
  "updatedAt": "2026-03-19T03:12:01.600Z"
}