Getting Started
FluxRail lets you monitor any blockchain wallet or contract in real-time and receive webhook notifications when events occur.
Base URL
https://api.fluxrail.io/api/v1Quick Start
- Sign up at fluxrail.io and get a free API key
- Create a webhook endpoint to receive events
- Create a subscription to monitor a wallet
- Receive real-time event notifications
1 โ Create a webhook
curl -X POST https://api.fluxrail.io/api/v1/webhooks \
-H "X-API-Key: flux_your_key" \
-H "Content-Type: application/json" \
-d '{
"name": "My Webhook",
"url": "https://yourapp.com/webhook"
}'2 โ Create a subscription
curl -X POST https://api.fluxrail.io/api/v1/subscriptions \
-H "X-API-Key: flux_your_key" \
-H "Content-Type: application/json" \
-d '{
"name": "Vitalik ETH Monitor",
"chain_slug": "ethereum",
"wallet_addresses": ["0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"],
"event_types": ["native_transfer", "erc20_transfer"],
"webhook": 1
}'3 โ List your subscriptions
curl https://api.fluxrail.io/api/v1/subscriptions \
-H "X-API-Key: flux_your_key"S
Sophie
Docs assistant ยท Ask anything
Hi! I'm Sophie ๐
Ask me anything about the FluxRail API โ I can explain endpoints, generate code examples, and walk you through setup.