Integration
Arbion AI provides seamless support for multiple blockchain ecosystems via a unified API surface. You can specify the target chain in your requests, enabling cross-chain analytics, portfolio management, and strategy deployment.
Supported Networks
Ethereum
https://eth.arbion.org/rpc
eth
Binance Smart Chain
https://bsc.arbion.org/rpc
bsc
Solana
https://sol.arbion.org/rpc
sol
Polygon
https://polygon.arbion.org/rpc
matic
Specifying Chain in API Requests
Most endpoints accept an optional chain
parameter to target a specific network. If omitted, Arbion AI will default to Ethereum.
Example: Market Prediction on BSC
curl https://api.arbion.org/v1/predictMarket \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"symbol": "BNB/USD",
"timeframe": "4h",
"chain": "bsc"
}'
Cross-Chain Data Aggregation
Use the crossChain
endpoint to aggregate metrics across multiple chains in a single request. This is useful for diversified portfolios and arbitrage strategies.
Endpoint: POST /crossChain
Request Body:
{
"chains": ["eth", "bsc", "sol"],
"symbol": "USDC",
"metrics": ["liquidity", "volume", "price"]
}
Response:
{
"USDC": {
"eth": { "liquidity": 1200000000, "volume": 35000000, "price": 1.00 },
"bsc": { "liquidity": 800000000, "volume": 25000000, "price": 0.99 },
"sol": { "liquidity": 500000000, "volume": 15000000, "price": 1.01 }
},
"timestamp": "2025-05-15T10:35:00Z"
}
Multi-Chain Portfolio Management
Leverage the assessRisk
and optimizeTokenomics
endpoints with cross-chain support by specifying chain
per position or model run.
Example: Risk Assessment on Ethereum and Polygon
curl https://api.arbion.org/v1/assessRisk \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"positions": [
{ "symbol": "ETH/USD", "quantity": 1, "entryPrice": 3100, "chain": "eth" },
{ "symbol": "MATIC/USD", "quantity": 500, "entryPrice": 1.2, "chain": "matic" }
],
"confidence": 0.95
}'
Last updated