Track Delta Order Auction Status
Get Delta Order Auction Status
GET
https://api.paraswap.io/delta/orders/:orderId
This endpoint enables users to retrieve real-time details of a specific auction, ensuring transparency and efficient execution monitoring.
Get Delta Orders for a User
GET
https://api.paraswap.io/delta/orders
The Get Delta Orders for a User endpoint allows integrators to fetch all orders associated with a specific address, making it invaluable for dashboards, trade history tracking, and compliance purposes.
Query Parameters
userAddress*
string
User Address.
chainId
string
Filters orders by Chain ID.
page
integer
Default: 1
.
limit
integer
Default: 100
.
Most common error messages
These are the two most common messages when using this endpoint.
ValidationError
- validation for params failedUnsupportedChain
- the chain ID is not supported by Delta.
To avoid running into ValidationError
and UnsupportedChain
errors when using this endpoint, here are some recommendations:
Avoiding ValidationError
ValidationError
Check Required Parameters: Ensure all mandatory parameters are included in your request. Missing or incorrectly formatted fields often trigger this error.
Validate Data Types: Confirm that parameters match the expected types (e.g., numbers vs. strings, correct JSON structure).
Follow API Documentation: Double-check the expected format for each parameter in the official API documentation.
Avoiding UnsupportedChain
UnsupportedChain
Verify Supported Chains: Check the API documentation or a dedicated "supported chains" endpoint to ensure the chain ID is compatible with Delta.
Use Correct Chain IDs: Some APIs require chain IDs in decimal format, while others expect hex. Ensure you’re using the correct format.
Last updated