example-data.com
Menu
Browse docs and collections

Overview

comments / #268

Comment #268

· 10/8/2025

Caveo tardus crastinus appono. Comparo error tripudio artificiose amor praesentium. Ventosus eaque trado adflicto comminor. Laborum verto damnatio ara ager annus talis adeptio.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 268,
  "userId": 103,
  "targetType": "post",
  "targetId": 343,
  "body": "Caveo tardus crastinus appono. Comparo error tripudio artificiose amor praesentium. Ventosus eaque trado adflicto comminor. Laborum verto damnatio ara ager annus talis adeptio.",
  "isEdited": false,
  "createdAt": "2025-10-08T02:29:58.204Z",
  "updatedAt": "2025-10-08T02:29:58.204Z"
}