example-data.com
Menu
Browse docs and collections

Overview

comments / #1020

Comment #1020

· 12/30/2025

Expedita usitas spoliatio paens crapula suffoco crudelis tredecim. Atqui occaecati suppono adamo pariatur tabella avarus. Capitulus pecus canonicus cenaculum assumenda cupio bestia volup cenaculum.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 1020,
  "userId": 240,
  "targetType": "post",
  "targetId": 268,
  "body": "Expedita usitas spoliatio paens crapula suffoco crudelis tredecim. Atqui occaecati suppono adamo pariatur tabella avarus. Capitulus pecus canonicus cenaculum assumenda cupio bestia volup cenaculum.",
  "isEdited": false,
  "createdAt": "2025-12-30T23:18:29.689Z",
  "updatedAt": "2025-12-30T23:18:29.689Z"
}