Skip to content
GET /v1/tickers

All markets for a quote ranked by 24h quote volume

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/coinsph-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/coinsph-api/v1/tickers" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coinsph-api/v1/tickers", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coinsph-api/v1/tickers");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/coinsph-api/v1/tickers",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "count": 50,
        "quote": "PHP",
        "source": "Coins.ph",
        "tickers": [
            {
                "ask": 61.44,
                "bid": 61.43,
                "base": "USDT",
                "last": 61.43,
                "quote": "PHP",
                "market": "USDTPHP",
                "spread": 0.01,
                "low_24h": 61.23,
                "high_24h": 61.51,
                "open_24h": 61.51,
                "change_24h": -0.08,
                "change_24h_pct": -0.1301,
                "base_volume_24h": 32482021.25,
                "quote_volume_24h": 1994027762.25
            },
            {
                "ask": 61.5,
                "bid": 61.48,
                "base": "USDC",
                "last": 61.48,
                "quote": "PHP",
                "market": "USDCPHP",
                "spread": 0.02,
                "low_24h": 61.24,
                "high_24h": 61.54,
                "open_24h": 61.54,
                "change_24h": -0.06,
                "change_24h_pct": -0.0975,
                "base_volume_24h": 25115445.53,
                "quote_volume_24h": 1542669594.77
            },
            {
                "ask": 68.43,
                "bid": 68.34,
                "base": "XRP",
                "last": 68.4,
                "quote": "PHP",
                "market": "XRPPHP",
                "spread": 0.09,
                "low_24h": 66.94,
                "high_24h": 69.89,
                "open_24h": 68.79,
                "change_24h": -0.39,
                "change_24h_pct": -0.5669,
                "base_volume_24h": 240101.61,
                "quote_volume_24h": 16397969.18
            },
            {
                "ask": 3854158.1,
                "bid": 3851047.7,
                "base": "BTC",
                "last": 3854158.2,
                "quote": "PHP",
                "market": "BTCPHP",
                "spread": 3110.4,
                "low_24h": 3729025,
                "high_24h": 3869018.4,
                "open_24h": 3797727,
                "change_24h": 56431.2,
                "change_24h_pct": 1.4859,
                "base_volume_24h": 2.5810414,
                "quote_volume_24h": 9807122.2
            },
            {
                "ask": 3441,
                "bid": 3419.7,
                "base": "HYPE",
                "last": 3428.4,
                "quote": "PHP",
                "market": "HYPEPHP",
                "spread": 21.3,
                "low_24h": 3238.8,
                "high_24h": 3598.4,
                "open_24h": 3449.9,
                "change_24h": -21.5,
                "change_24h_pct": -0.6232,
                "base_volume_24h": 2328.73,
                "quote_volume_24h": 7954480.98
            },
            {
                "ask": 5.215,
                "bid": 5.2,
                "base": "DOGE",
                "last": 5.21,
                "quote": "PHP",
                "market": "DOGEPHP",
      
…