example-data.com
Menu
Browse docs and collections

Overview

crypto / #45

bruised agreement

symbol
HFQJR
name
bruised agreement
slug
bruised-agreement
marketCap
105150888782
price
22.50044846
priceChangePercent24h
4.57
volume24h
45884985
circulatingSupply
4673279689
totalSupply
5185513465
createdAt

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/crypto/45"
);
const crypto = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/crypto.d.ts https://example-data.com/types/crypto.d.ts
import type { Crypto } from "./types/crypto";

const res = await fetch(
  "https://example-data.com/api/v1/crypto/45"
);
const crypto = (await res.json()) as Crypto;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/crypto/45"
)
crypto = res.json()

Response

{
  "id": 45,
  "symbol": "HFQJR",
  "name": "bruised agreement",
  "slug": "bruised-agreement",
  "marketCap": 105150888782,
  "price": 22.50044846,
  "priceChangePercent24h": 4.57,
  "volume24h": 45884985,
  "circulatingSupply": 4673279689,
  "totalSupply": 5185513465,
  "createdAt": "2025-12-21T16:24:29.115Z"
}