Market Info
Get Market Info for All Symbols
Partner Support
User Flows
General API
- Builder Info
- System Info
- USDC Faucet
User API
- Registration
- Key Management
- Account/User Info
- Account Notifications
- Account Config
- Delegate Signer
Trading API
- Order Management
- Liquidations
- Assets/Withdraw/Settle PnL
- Positions
- Funding
Rewards API
- Trading Rewards
- Market Making Rewards
Staking & Valor API
- Staking
- Valor
Builder API
- User Data
- Trading Campaigns
- Fee Setting
- Referral Program
Market Data API
- TradingView
- Funding Rates
- Market Info
- GETGet Supported Collateral Info
- GETGet Order Rules per Symbol
- GETGet Available Symbols
- GETGet Market Trades
- GETGet Price Info for All Symbols
- GETGet Open Interests for All Symbols
- GETGet Market Info for All Symbols
- GETGet Market Info for One Symbol
- GETGet Index Price Source
- GETGet Historical Price List for All Symbols
- GETOrderbook Snapshot
- GETGet Kline
- GET
Websocket API
- Introduction
- PING/PONG
- Authentication
- Error Response
- Public Market Data
- Private User Data
Market Info
Get Market Info for All Symbols
Limit: 10 requests per 1 second per IP address
GET /v1/public/futures
Get basic market information for all the symbols.
GET
/
v1
/
public
/
futures
curl --request GET \
--url https://api-evm.orderly.org/v1/public/futures
{
"success": true,
"timestamp": 1702989203989,
"data": {
"rows": [
{
"symbol": "PERP_ETH_USDC",
"index_price": 1901.6,
"mark_price": 1950,
"sum_unitary_funding": 387.891,
"est_funding_rate": 0.00046875,
"last_funding_rate": 0.00046875,
"next_funding_time": 1683270060000,
"open_interest": "None",
"24h_open": 2115,
"24h_close": 2115,
"24h_high": 2115,
"24h_low": 2115,
"24h_amount": 0,
"24h_volume": 0
}
]
}
}
Response
200 - application/json
Success
curl --request GET \
--url https://api-evm.orderly.org/v1/public/futures
{
"success": true,
"timestamp": 1702989203989,
"data": {
"rows": [
{
"symbol": "PERP_ETH_USDC",
"index_price": 1901.6,
"mark_price": 1950,
"sum_unitary_funding": 387.891,
"est_funding_rate": 0.00046875,
"last_funding_rate": 0.00046875,
"next_funding_time": 1683270060000,
"open_interest": "None",
"24h_open": 2115,
"24h_close": 2115,
"24h_high": 2115,
"24h_low": 2115,
"24h_amount": 0,
"24h_volume": 0
}
]
}
}