example-data.com
Menu
Browse docs and collections

Overview

comments / #460

Comment #460

· 10/25/2024

Commodo cornu cupiditate rerum vilitas acidus creta vulariter. Velut stipes volaticus bene terminatio summopere derideo vita tracto. Demum abbas repudiandae voluptatum conspergo utor animadverto.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 460,
  "userId": 62,
  "targetType": "post",
  "targetId": 314,
  "body": "Commodo cornu cupiditate rerum vilitas acidus creta vulariter. Velut stipes volaticus bene terminatio summopere derideo vita tracto. Demum abbas repudiandae voluptatum conspergo utor animadverto.",
  "isEdited": false,
  "createdAt": "2024-10-25T23:59:28.232Z",
  "updatedAt": "2024-10-25T23:59:28.232Z"
}