Aller au contenu
GET /v1/meta

Service metadata

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/coinsph-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/coinsph-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coinsph-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coinsph-api/v1/meta");
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/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "note": "Pass markets as BTC_PHP or BTCPHP. Symbols are concatenated; base/quote come from exchangeInfo. The default quote is the Philippine peso (PHP). quote_volume_24h is in the quote currency; the 24h change is derived from the day's open.",
        "source": "Coins.ph public API (api.pro.coins.ph, live)",
        "service": "coinsph-api",
        "endpoints": {
            "GET /v1/book": "Live order-book depth — best bid/ask and spread (market=BTC_PHP, limit=20).",
            "GET /v1/meta": "This document.",
            "GET /v1/ticker": "Ticker for one market (market=BTC_PHP or symbol=BTC&quote=PHP).",
            "GET /v1/markets": "Tradable pairs with base/quote and status (quote=PHP optional).",
            "GET /v1/tickers": "All markets for a quote ranked by 24h quote volume (quote=PHP, limit=50)."
        },
        "description": "Live spot market data from Coins.ph (Coins Pro), the Philippines' leading crypto exchange. The ticker endpoint returns a market's last price, best bid/ask, 24h open/high/low, 24h change and base/quote volume; the tickers endpoint ranks every market for a quote currency (PHP, USDT or USDC) by 24h quote volume; the markets endpoint lists tradable pairs with base/quote and status; the book endpoint returns live order-book depth. Live, no key, nothing stored. A distinct Philippine-peso venue for PHP price discovery, separate from the USD/USDT-quoted exchange feeds.",
        "market_count": 181,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-11T07:48:29.957Z",
        "request_id": "eafde03b-dcb2-4a74-baff-69e89b1723af"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}