Price a bridge transfer — fees, output, fill time
API · /across-api
Across Bridge API
Live cross-chain bridge data from Across, one of the largest intent-based bridges, which moves USDC, ETH, WBTC and other assets between Ethereum and its rollups (Arbitrum, Base, Optimism, Polygon, zkSync, Linea, Blast, Scroll and more) using a relayer network and a single unified liquidity pool. The quote endpoint prices a bridge transfer — the relayer capital fee, gas fee, LP fee, total fee, the amount received and the estimated fill time. The routes endpoint lists every supported bridge route (origin chain, destination chain, token). The limits endpoint returns the min and max bridgeable amount for a route. The chains endpoint lists supported chains. Read live from Across, nothing stored. This is Across's own cross-chain bridge fee, route and fill-time layer — distinct from DEX, lending, staking and price feeds.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 190 ms
- Server probes · 24h
- Subscribers
- 4,810
- active
- Total calls
- 5
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 2,400 calls / month
- 3 requests / second
- Hard cap (429 above quota, no overage)
- 2.4k calls/month
- 3 req/sec
- All routes
- No credit card
Starter
€9.50 /month
- 62,000 calls / month
- 15 requests / second
- Hard cap (429 above quota, no overage)
- 62k calls/month
- 15 req/sec
- Email support
Pro
€27.50 /month
- 330,000 calls / month
- 40 requests / second
- Hard cap (429 above quota, no overage)
- 330k calls/month
- 40 req/sec
- Priority support
Scale
€63.00 /month
- 2,050,000 calls / month
- 120 requests / second
- Hard cap (429 above quota, no overage)
- 2.05M calls/month
- 120 req/sec
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Wheatstone Bridge API
Wheatstone-bridge and strain-gauge maths as an API, computed locally and deterministically. The bridge endpoint takes the four arm resistances R1–R4 and an excitation voltage and returns the bridge output voltage between the two midpoints, Vout = Vin·(R2/(R1+R2) − R4/(R3+R4)), in volts and millivolts, the voltage at each midpoint, and whether the bridge is balanced (Vout = 0 when R1·R4 = R2·R3). The balance endpoint inverts it: give any three arms and it solves the fourth resistance that balances the bridge, the classic way a Wheatstone bridge measures an unknown resistance. The strain endpoint models a strain-gauge bridge — quarter, half or full — and converts in both directions between mechanical strain and electrical output: from a gauge factor and a strain (given directly, as microstrain or as a relative resistance change ΔR/R = GF·ε) it returns the output ratio and voltage Vout/Vin = (k/4)·GF·ε where k is the number of active arms, and from an output voltage and excitation it returns the strain and microstrain. Everything is computed locally and deterministically, so it is instant and private. Ideal for instrumentation and sensor tools, load-cell, pressure-sensor and RTD measurement design, strain-gauge and data-acquisition apps, and electronics education. Pure local computation — no key, no third-party service, instant. Live, nothing stored. 3 endpoints. This is bridge and strain-gauge measurement; for Ohm's law, voltage dividers and series/parallel resistor combinations use an Ohm's-law API.
api.oanor.com/wheatstone-api
THORChain Cross-Chain Liquidity API
Live cross-chain liquidity data from THORChain — the decentralised cross-chain automated market maker (AMM) that swaps native assets (BTC, ETH, BCH, AVAX and more) across separate blockchains without wrapping or bridging, settling every trade through its native RUNE asset and continuous liquidity pools. Read straight from a public THORNode REST endpoint as clean JSON. List every liquidity pool with its RUNE and asset depth, RUNE price and USD price, pool units and status; pull one pool's full depth and pricing; read the protocol's economics — total bonded RUNE, effective security bond, reserve and bonding / liquidity APY; get the current inbound vault address, router and gas rate for every connected chain plus halt flags; or read the last observed and signed block height per connected chain, THORChain's cross-chain heartbeat. Live, no cache. This is THORChain's cross-chain AMM, liquidity-pool and vault layer — distinct from single-chain explorers and from price feeds: continuous liquidity pools settled in RUNE.
api.oanor.com/thorchain-api
KyberSwap API
Live DEX-aggregator swap quotes from KyberSwap, which routes a trade across every decentralised exchange and liquidity pool on a chain to find the best output. The quote endpoint prices a swap between two tokens on Ethereum, Arbitrum, Base, Optimism, Polygon or BNB Chain — it returns the amount received, the USD values in and out, the price impact, the estimated gas cost and the DEXs the route passes through. The tokens endpoint lists the supported tokens per chain. The chains endpoint lists supported chains. Read live from KyberSwap, nothing stored. This is KyberSwap's own multi-chain EVM swap-routing and best-price layer — distinct from single-DEX feeds and from Solana swap aggregators.
api.oanor.com/kyberswap-api
STON.fi API
Live data from STON.fi, the largest decentralised exchange on TON (The Open Network, the Telegram-native blockchain). The overview endpoint returns the DEX's current total value locked plus lifetime volume, wallets and trades. The pools endpoint returns the top liquidity pools by volume, APY or liquidity — each with its token pair, last price, base/quote volume and liquidity, LP token USD price and APY. The assets endpoint searches STON.fi's token registry by symbol and returns each token's live USD price, decimals and contract address. Read live from STON.fi, nothing stored. The only TON-native DeFi feed here — distinct from Ethereum, Solana and Sui DEX feeds — this is STON.fi's own TON DEX pool, volume/APY and token-pricing layer.
api.oanor.com/stonfi-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Across Bridge API?
What's the rate limit for Across Bridge API?
How much does Across Bridge API cost?
Can I cancel my subscription anytime?
Is Across Bridge API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/across-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/across-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/across-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/across-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.