What agents can do with Velora
Route user intent
Map user requests like “swap now”, “gasless swap”, or “protect me from MEV” to the right Velora flow.
Run the trade loop
Quote, build, sign, submit, and poll swaps, limit orders, and TWAPs using deterministic sequences.
Generate integrations
Copy verified prompts for Claude Code, Cursor, Codex, and other coding agents.
Connect over MCP
Point any MCP client at the hosted Velora server for quotes, guidance, and unsigned transactions.
Why Velora fits agents
Agents need APIs that return structured decisions, not ambiguous text. Velora exposes execution paths as explicit response objects:- Top-level
deltameans continue the Delta order flow. - Top-level
marketmeans continue the Market transaction flow. - If neither is present, stop and ask the user to change the trade.
Execution paths
The agent rule
Where to start
- Use Decision tables to route user intent and API responses.
- Use Five-call recipe to implement the canonical trade loop.
- Use Prompt library to generate working integrations with AI coding agents.
- Use Trading modes to understand
mode=DELTA,mode=MARKET, andmode=ALL. - Use Limit orders and TWAP when the user wants delayed execution, target prices, or time-sliced trades. For API-based agents, build these flows through
/v2/delta/prices,/v2/delta/orders/build,/v2/delta/orders, and Delta order read endpoints.
Guardrails
Agents should:- Never invent token addresses, chain IDs, quotes, transaction hashes, or order IDs.
- Ask before changing chain, recipient, spend direction, or execution mode.
- Ask for confirmation before submitting a signed order or sending a transaction.
- Requote when the quote expires, validation fails, or balances materially change.
- Treat
deltaandmarketas mutually exclusive top-level response paths.