Complete reference for all API endpoints with request and response examples
Authorization: Bearer YOUR_API_KEYRequired for all requests
Content-Type: application/jsonRequired for POST requests
https://api.onyxflux.com/api/v1/balance/:addressGet the native token balance for an address
{
"address": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
"balance": "1.234567890123456789",
"chain": "ethereum",
"timestamp": 1704067200
}/api/v1/transaction/:hashGet transaction details by hash
{
"hash": "0xabc123...",
"from": "0x742d35Cc...",
"to": "0x123abc...",
"value": "1.5",
"status": "confirmed",
"blockNumber": 19234567,
"timestamp": 1704067200
}/api/v1/tokens/:addressGet all token balances for an address
{
"address": "0x742d35Cc...",
"tokens": [
{
"symbol": "USDC",
"balance": "1000.50",
"contractAddress": "0xA0b8..."
}
]
}/api/v1/contract/callCall a smart contract method
{
"result": "0x000000000000000...",
"decoded": "1000000000000000000",
"chain": "ethereum"
}/api/v1/gas/priceGet current gas prices
{
"chain": "ethereum",
"slow": "15",
"standard": "20",
"fast": "30",
"instant": "45",
"unit": "gwei"
}/api/v1/nova/predictionsGet Nova AI market predictions (Pro/Enterprise only)
{
"predictions": [
{
"asset": "ETH",
"currentPrice": 2345.67,
"predicted1h": 2350.12,
"predicted24h": 2380.45,
"confidence": 0.87,
"lastUpdated": 1704067200
}
],
"disclaimer": "Predictions are not financial advice..."
}Nova Intelligence AI uses real-time and historical blockchain data to produce predictions. While highly accurate most of the time, no model can guarantee 100% accuracy. Use Nova insights responsibly and always conduct your own research before making financial decisions. Past performance is not indicative of future results.