API Reference
- GETTest Connectivity
- GETCheck Server Time
- GETContracts List
- GETDepth
- GET24Hrs Ticker
- GETObtain Index/Tag Price
- GETKline/Candlestick Data
- GETOrder Information
- POSTCreate New Order
- POSTCreate New Condition Order
- POSTCancel Order
- GETCurrent Open Orders
- POSTHistorical Commission Records
- POSTProfit And Loss Records
- GETTransaction Records
- POSTChange Position Model
- POSTChange Margin Model
- POSTChange Leverage
- POSTObtain The Current Trigger Order
- POSTCancel Trigger Order
- GETAccount Information
API Reference
Contracts List
Get a list of all contracts on the exchange.
GET
/
fapi
/
v1
/
contracts
curl --request GET \
--url https://futuresopenapi.odyssey.trade/fapi/v1/contracts
[
{
"symbol": "<string>",
"contractId": 123,
"pricePrecision": 123,
"status": 0,
"type": "E",
"side": 0,
"multiplier": "<string>",
"multiplierCoin": "<string>",
"minOrderVolume": "<string>",
"minOrderMoney": "<string>",
"maxMarketVolume": "<string>",
"maxMarketMoney": "<string>",
"maxLimitVolume": "<string>",
"maxLimitMoney": "<string>",
"maxValidOrder": "<string>"
}
]
Response
200 - application/json
Successful Response
The response is of type object[]
.
curl --request GET \
--url https://futuresopenapi.odyssey.trade/fapi/v1/contracts
[
{
"symbol": "<string>",
"contractId": 123,
"pricePrecision": 123,
"status": 0,
"type": "E",
"side": 0,
"multiplier": "<string>",
"multiplierCoin": "<string>",
"minOrderVolume": "<string>",
"minOrderMoney": "<string>",
"maxMarketVolume": "<string>",
"maxMarketMoney": "<string>",
"maxLimitVolume": "<string>",
"maxLimitMoney": "<string>",
"maxValidOrder": "<string>"
}
]
Assistant
Responses are generated using AI and may contain mistakes.