Market Data
Get available products
Overview
Returns a list of all available product codes (instruments) that have active contracts.
What are Products?
Products represent different futures instruments traded on CME Group exchanges:
| Product | Name | Exchange |
|---|---|---|
| ES | E-mini S&P 500 | CME |
| NQ | E-mini NASDAQ-100 | CME |
| CL | Crude Oil | NYMEX |
| GC | Gold | COMEX |
| 6E | Euro FX | CME |
| ZB | 30-Year T-Bond | CBOT |
Use Cases
- Populate a product selector dropdown in your UI
- Validate user input before filtering contracts
- Discover what instruments are available for trading
Example Request
curl -X GET "https://api.hyperprop.com/platform/v1/contracts/products" \
-H "Authorization: Bearer YOUR_SESSION_TOKEN"
Example Response
{
"success": true,
"data": {
"products": ["CL", "ES", "GC", "NQ", "6E", "ZB"]
}
}
GET
Get available products
Related topics
Get CME contractsGet trading plans for your organizationWebSocket Stream (Documentation Only)MCP connector (AI agents)Get contract by ID