Skip to main content
Version: Next

Full Futures List

Get the full futures list, optionally filtered by contract type.

API Information

  • Method: GET
  • Path: /api/v1/stock/open-api/products/list

Request Parameters

ParameterTypeRequiredDescription
typeintYesContract type, 1=US stock futures, 3=crypto futures

Request Example

# US stock futures
GET /api/v1/stock/open-api/products/list?type=1

# Crypto futures
GET /api/v1/stock/open-api/products/list?type=3

Response Fields

FieldTypeDescription
codeintStatus code, 0 indicates success
dataarrayFutures list

Fields for each item in data:

FieldTypeDescription
symbolstringContract symbol
namestringContract name in English
nameZhstringContract name in Chinese
logoobjectContract icon
logo.lightstringIcon URL for light theme
logo.darkstringIcon URL for dark theme
pricenumberCurrent price

Response Example

{
"code": 0,
"data": [
{
"symbol": "NVDA",
"name": "NVIDIA Corporation",
"nameZh": "英伟达公司",
"logo": {
"light": "https://test.test9529.xyz/files/uploads/stock_icons/NVDA_icon.png",
"dark": "https://test.test9529.xyz/files/uploads/stock_icons/NVDA_icon.png"
},
"price": 195.22
}
]
}