Skip to main content

Documentation Index

Fetch the complete documentation index at: https://new-docs.velora.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Velora is a DEX aggregator and intents protocol. One integration gives you:
  • Market routing — best price across every DEX, AMM, and bridge on every EVM chain Velora supports.
  • Delta intents — gasless, MEV-protected swaps filled by a competitive solver network. Single signature.
  • Crosschain — Delta orders that resolve across chains via bridge-aware solvers.
  • Augustus RFQ — on-chain limit orders and OTC for ERC-20, with optional partial fills.
You can pick a single surface or run them side by side. The Market API and Delta API share the same POST /quote entry point; mode=ALL returns both and you choose which to execute.

Choose your integration

You want to…UseTime to first swap
Maximum control, any language, any backendMarket API / Delta API~60 seconds
Type-safe TypeScript, your own UI@velora-dex/sdk~5 minutes
Drop-in UI, zero design work@velora-dex/widget~10 minutes
Crosschain, gasless, MEV-protected fillsDelta (via API or SDK)~10 minutes
AI agent / LLM integrationMCP server + five-call recipe~5 minutes

Quickstart

Get a quote for 1 ETH → USDC on Ethereum mainnet. mode=ALL returns the Market route and the Delta intent side-by-side in a single response, and you pick which to execute.
curl -s "https://api.velora.xyz/quote" \
  --data-urlencode "srcToken=0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE" \
  --data-urlencode "destToken=0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48" \
  --data-urlencode "amount=1000000000000000000" \
  --data-urlencode "srcDecimals=18" \
  --data-urlencode "destDecimals=6" \
  --data-urlencode "side=SELL" \
  --data-urlencode "chainId=1" \
  --data-urlencode "mode=ALL" \
  --data-urlencode "userAddress=0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045" \
  --data-urlencode "partner=my-app-name" \
  -G | jq
The Market response contains a priceRoute (calldata-ready against Augustus v6.2). The Delta response contains a delta block (sign with EIP-712, submit to /delta/orders). With mode=ALL you get both.

Next steps

Build with the SDK

Type-safe TypeScript wrapper for quote → build → sign → submit.

Drop in the Widget

Embeddable React component or vanilla iframe.

Ship a Delta intent

Gasless, MEV-protected, single-signature swap.
All endpoints work without a partner key for low-volume testing. To unlock production rate limits and fee-sharing, see Authentication & partner key.