๐ŸŽ Start your 7-day free trial ยท Get full Pro access + bonus credits Get Started Free โ†’

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/v1

Quick Start

  1. Sign up at fluxrail.io and get a free API key
  2. Create a webhook endpoint to receive events
  3. Create a subscription to monitor a wallet
  4. 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.