Authentication
Authenticate every request with your API key. For REST, pass it as a bearer token. For streams, pass it as a key query parameter on the WebSocket URL.
REST
Include your key in the Authorization header.
curl https://api.anaxer.com/v1/creations \
-H "Authorization: Bearer YOUR_KEY"Streams
Pass your key as the key query parameter when opening the WebSocket connection.
wss://api.anaxer.com/v1/stream?key=YOUR_KEYNetwork
Anaxer streams Solana mainnet data only. There is no devnet or testnet endpoint.
Key security
Do not open stream connections directly from browser JavaScript — your key appears in the URL and will be visible in network logs. Proxy streams through your backend and keep keys in environment variables on the server.
Key rotation. Rotate a compromised key instantly from your dashboard. The old key stops working immediately.