example-data.com
Menu
Browse docs and collections

Overview

comments / #628

Comment #628

· 12/23/2024

Appello solutio pax atrox caelum adnuo voluptas. Assumenda avarus tener culpo consequuntur celer tactus canonicus amiculum. Dolorem hic ter aperiam animadverto somniculosus.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 628,
  "userId": 203,
  "targetType": "post",
  "targetId": 418,
  "body": "Appello solutio pax atrox caelum adnuo voluptas. Assumenda avarus tener culpo consequuntur celer tactus canonicus amiculum. Dolorem hic ter aperiam animadverto somniculosus.",
  "isEdited": true,
  "createdAt": "2024-12-23T01:15:24.994Z",
  "updatedAt": "2025-08-27T18:42:01.447Z"
}