example-data.com
Menu
Browse docs and collections

Overview

comments / #421

Comment #421

· 10/9/2025

Acerbitas tumultus ducimus harum tollo apto universe provident conforto tollo.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 421,
  "userId": 53,
  "targetType": "post",
  "targetId": 103,
  "body": "Acerbitas tumultus ducimus harum tollo apto universe provident conforto tollo.",
  "isEdited": false,
  "createdAt": "2025-10-09T22:17:17.579Z",
  "updatedAt": "2025-10-09T22:17:17.579Z"
}