Boros Open API
This guide walks you through integrating with the Boros trading platform via the REST API. For exact request/response schemas and parameter details, see the interactive API docs.
For key concepts and terminology, see the Glossary.
Example Repository: https://github.com/pendle-finance/boros-api-examples
Base URLsβ
| Environment | Base URL |
|---|---|
| Production | https://api.boros.finance |
| Service | Path Prefix | Purpose |
|---|---|---|
| Open API | /open-api/v1/ (or /v2/) | Market data, calldata generation, account queries |
| Send Txs Bot | /send-txs-bot/v2/ or /v3/ | Submitting signed transactions on-chain |
| Stop Order | /stop-order/v1/ to /v3/ | Conditional TP/SL order management |
API Servicesβ
Open API (Primary)β
The main API for querying data and generating transaction calldata.
Interactive docs: https://api.boros.finance/open-api/docs
Send Txs Bot (Transaction Submission)β
Receives signed calldata from agents and broadcasts transactions on-chain. You never call smart contracts directly β the bot submits them on your behalf and charges gas fees from your gas balance.
Interactive docs: https://api.boros.finance/send-txs-bot/docs
Stop Order Serviceβ
Manages conditional stop orders (take-profit / stop-loss). These orders live off-chain and are triggered automatically when the market APR crosses a threshold. See Stop Orders below for details.
Interactive docs: https://api.boros.finance/stop-order/docs
Integration Workflowsβ
1. First-Time Setupβ
Before trading, you need to set up an agent and fund your accounts.