example-data.com
Menu
Browse docs and collections

Overview

comments / #876

Comment #876

· 1/25/2025

Pauci facere allatus confero reprehenderit perferendis acsi causa modi. Theca appositus cornu apto. Viscus clam tener velut celebrer quam defleo strues.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 876,
  "userId": 56,
  "targetType": "post",
  "targetId": 233,
  "body": "Pauci facere allatus confero reprehenderit perferendis acsi causa modi. Theca appositus cornu apto. Viscus clam tener velut celebrer quam defleo strues.",
  "isEdited": false,
  "createdAt": "2025-01-25T00:27:03.144Z",
  "updatedAt": "2025-01-25T00:27:03.144Z"
}