API integration
Bridge Status & History
This section explains how to retrieve the status and history of your bridge transactions. You can use these endpoints to monitor transaction progress and confirm successful transfers.
1. Get Bridge Transaction Status
To check the status of a specific bridge, use the following API request:
getBridgeStatus.js
When you commit a bridge transaction, you receive a quoteId
that you can use to track the transaction status.
Possible state values:
PENDING
- The transaction is being processed.ACCEPTED
- The deposit is valid and has been accepted.EXECUTED
- The transaction is complete, and credited on destination chain.CANCELLED
- The transaction did not complete successfully.
For the full response format and more details, see the API Reference.
2. Get Bridge History
To retrieve a list of past transactions:
rhino.fi prioritizes transaction privacy, so the history endpoint is disabled by default for API keys. If access is required, ensure your API key is kept private and properly configured.
You can request access to the user history endpoint by contacting us.
getBridgeUserHistory.js
Next Steps
- If you haven’t integrated the bridge yet, start with the Quickstart Guide.
- For contract-level interactions, see Contract Examples.