Trade API Endpoints
The Trade API provides endpoints for getting quotes, submitting orders, and cancelling orders. This allows you to execute trades programmatically across various supported chains and assets.
Available Endpoints
Endpoint | Method | Description |
---|---|---|
/v1/trade/quote | POST | Get a quote for a potential trade |
/v1/trade | POST | Submit a trade order for execution |
/v1/trade/:orderId | DELETE | Cancel an existing order |
Workflow
The typical workflow for trading follows these steps:
- Get a quote for the assets you want to trade, specifying order type (market, limit, TWAP)
- Examine the quote response for pricing, fees, and other details
- Submit the order using the quote if you're satisfied with the terms
- Track the order status through the orders endpoint
- Cancel the order if necessary (for limit or TWAP orders that haven't fully executed)
Supported Order Types
- Market Orders: Execute immediately at current market prices
- Limit Orders: Execute only when the price reaches your specified limit price
- TWAP Orders: Time-Weighted Average Price orders that execute over a specified duration
- Stop Orders: Currently not supported (mentioned in API but not implemented)
For detailed information on each endpoint, refer to the specific documentation pages linked above.