/v1/ticker
Ticker for one market
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/coinsph-api/v1/ticker" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coinsph-api/v1/ticker", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coinsph-api/v1/ticker");
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/ticker",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"ask": 3854158.1,
"bid": 3851047.7,
"base": "BTC",
"last": 3854158.2,
"quote": "PHP",
"market": "BTCPHP",
"source": "Coins.ph",
"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
},
"meta": {
"timestamp": "2026-06-11T07:48:28.876Z",
"request_id": "864ea662-9d9b-4660-8bc3-da7559ce7220"
},
"status": "ok",
"message": "Ticker retrieved successfully",
"success": true
}