example-data.com
Menu
Browse docs and collections

Overview

comments / #930

Comment #930

· 12/29/2024

Fugiat acceptus adicio volva laudantium spiculum inflammatio tero complectus. Cito subito certe.

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 930,
  "userId": 68,
  "targetType": "post",
  "targetId": 317,
  "body": "Fugiat acceptus adicio volva laudantium spiculum inflammatio tero complectus. Cito subito certe.",
  "isEdited": false,
  "createdAt": "2024-12-29T03:26:20.563Z",
  "updatedAt": "2024-12-29T03:26:20.563Z"
}