PAID API
Cryptocurrency Price API
Real-time cryptocurrency prices, market cap, and trading volume data
GET
/api/v1/crypto-price
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | Required | Cryptocurrency symbol (BTC, ETH, etc) |
Code Examples
curl -X GET "/api/v1/crypto-price" -H "Content-Type: application/json"
fetch("/api/v1/crypto-price")
.then(function(r) { return r.json(); })
.then(function(data) { console.log(data); });import requests
r = requests.get("/api/v1/crypto-price")
print(r.json())<?php
$data = file_get_contents("/api/v1/crypto-price");
print_r(json_decode($data, true));Example Response
{
"status": "success",
"data": {
"symbol": "BTC",
"price": 65432.1,
"market_cap": 1280000000000,
"change_24h": 2.5
}
}