FortiBlox LogoFortiBlox Docs

FortiBlox Nexus

High-performance X1 Blockchain infrastructure platform with RPC nodes, Geyser streaming, and enhanced APIs

FortiBlox Nexus

Welcome to FortiBlox Nexus - your complete X1 Blockchain infrastructure platform. We provide lightning-fast RPC nodes, real-time Geyser data streaming, and powerful enhanced APIs for building production-grade X1 Blockchain applications.

Why FortiBlox Nexus?

Unlimited Historical Data

Unlike other providers that charge per request or limit historical data access, FortiBlox Nexus provides unlimited historical X1 Blockchain data on all paid tiers. Access years of blockchain history without worrying about extra costs.

Free WebSocket Streaming

Get real-time account and transaction updates via WebSocket on all tiers, including Free. No hidden charges for streaming data.

Professional-Grade Infrastructure

  • 99.9% uptime SLA on Professional and Enterprise tiers
  • Multi-region redundancy for maximum reliability
  • Intelligent load balancing across healthy endpoints
  • Automatic failover and health monitoring

Developer-First Experience

  • 5-minute quickstart - Get your first API call working in minutes
  • Comprehensive documentation with code examples in JavaScript, Python, Rust, and cURL
  • Event-driven architecture - Webhooks and gRPC streaming for real-time updates
  • Transparent pricing - No hidden fees or surprise charges
  • Generous free tier - Start building without a credit card

Core Features

Quick Start

1. Create an Account

Sign up at https://nexus.fortiblox.com using your Google, GitHub, or email account.

2. Generate an API Key

Navigate to the Developer Portal and create your first API key. Choose a descriptive name and select the services you need.

3. Make Your First Request

curl -X POST https://nexus.fortiblox.com/rpc \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "getHealth"
  }'
const axios = require('axios');

const response = await axios.post('https://nexus.fortiblox.com/rpc', {
  jsonrpc: '2.0',
  id: 1,
  method: 'getHealth'
}, {
  headers: { 'X-API-Key': process.env.FORTIBLOX_API_KEY }
});

console.log('Health:', response.data.result);
import requests
import os

response = requests.post('https://nexus.fortiblox.com/rpc',
    json={'jsonrpc': '2.0', 'id': 1, 'method': 'getHealth'},
    headers={'X-API-Key': os.getenv('FORTIBLOX_API_KEY')}
)
health = response.json()['result']
print(f"Health: {health}")

Competitive Advantages

vs Helius

  • Unlimited historical data (Helius charges extra)
  • Free WebSocket streaming on all tiers
  • SQL analytics for custom queries
  • Transparent tier pricing with no hidden fees

vs Alchemy

  • Native X1 Blockchain focus (not multi-chain compromise)
  • Geyser streaming included (not an add-on)
  • Better price-to-performance ratio
  • No vendor lock-in with standard APIs

vs QuickNode

  • More generous free tier
  • Simpler pricing structure
  • Better documentation
  • Faster support response times

Subscription Tiers

TierMonthly PriceCreditsBest For
Free$0100,000Hobbyists, learning, testing
Developer$492,500,000Side projects, MVPs
Business$49930,000,000Production apps, startups
Professional$99975,000,000High-traffic applications
EnterpriseCustomUnlimitedLarge-scale operations

View detailed pricing →

Security Best Practices

  • Never expose API keys in client-side code
  • Use environment variables for key management
  • Enable domain restrictions for web applications
  • Set up IP restrictions for server applications
  • Rotate keys regularly (monthly recommended)
  • Use separate keys for development, staging, and production

Learn more about security →

Support

Next Steps