Market Info
Get Available 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 Available Symbols
Limit: 10 requests per 1 second per IP address
GET /v1/public/info
Get available symbols that Orderly supports, and also send order rules for each symbol. The definition of rules can be found at Get Order Rules per Market
GET
/
v1
/
public
/
info
Copy
curl --request GET \
--url https://api-evm.orderly.org/v1/public/info
Copy
{
"success": true,
"timestamp": 1702989203989,
"data": {
"rows": [
{
"symbol": "PERP_BTC_USDC",
"quote_min": 0,
"quote_max": 100000,
"quote_tick": 0.1,
"base_min": 0.00001,
"base_max": 20,
"base_tick": 0.00001,
"min_notional": 1,
"price_range": 0.02,
"price_scope": 0.4,
"std_liquidation_fee": 0.03,
"liquidator_fee": 0.015,
"claim_insurance_fund_discount": 0.0075,
"funding_period": 8,
"cap_funding": 0.000375,
"floor_funding": -0.000375,
"cap_ir": 0.0003,
"floor_ir": -0.0003,
"interest_rate": 0.0001,
"imr_factor": 0.025,
"created_time": 1684140107326,
"updated_time": 1685345968053,
"base_mmr": 0.05,
"base_imr": 0.1,
"liquidation_tier": 1
}
]
}
}
Response
200 - application/json
Copy
curl --request GET \
--url https://api-evm.orderly.org/v1/public/info
Copy
{
"success": true,
"timestamp": 1702989203989,
"data": {
"rows": [
{
"symbol": "PERP_BTC_USDC",
"quote_min": 0,
"quote_max": 100000,
"quote_tick": 0.1,
"base_min": 0.00001,
"base_max": 20,
"base_tick": 0.00001,
"min_notional": 1,
"price_range": 0.02,
"price_scope": 0.4,
"std_liquidation_fee": 0.03,
"liquidator_fee": 0.015,
"claim_insurance_fund_discount": 0.0075,
"funding_period": 8,
"cap_funding": 0.000375,
"floor_funding": -0.000375,
"cap_ir": 0.0003,
"floor_ir": -0.0003,
"interest_rate": 0.0001,
"imr_factor": 0.025,
"created_time": 1684140107326,
"updated_time": 1685345968053,
"base_mmr": 0.05,
"base_imr": 0.1,
"liquidation_tier": 1
}
]
}
}