/v1/meta
Service metadata
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/phemex-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/phemex-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/phemex-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/phemex-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"name": "Phemex Market Data API",
"source": "Phemex public REST (api.phemex.com)",
"endpoints": [
{
"path": "/v1/markets",
"description": "List perpetual products (optional quote / status filter)"
},
{
"path": "/v1/tickers",
"description": "24h tickers for all symbols, or a single symbol via ?symbol="
},
{
"path": "/v1/orderbook",
"description": "Order book depth for a symbol (?symbol=BTCUSDT)"
},
{
"path": "/v1/trades",
"description": "Recent trades for a symbol (?symbol=BTCUSDT)"
},
{
"path": "/v1/meta",
"description": "This metadata document"
}
],
"disclaimer": "Unofficial proxy of public Phemex endpoints. Not affiliated with Phemex. Market data only; no guarantees of accuracy or availability.",
"description": "Public perpetual-futures market data from the Phemex exchange: live products, 24h tickers, order book depth and recent trades. Prices are returned in real (unscaled) units.",
"base_currency_note": "USDT/USDC settled perpetuals plus inverse contracts"
},
"meta": {
"timestamp": "2026-06-15T11:15:31.297Z",
"request_id": "3f55a417-a587-4591-8332-15cd1620a331"
},
"status": "ok",
"message": "Meta",
"success": true
}