Quickstart
From registration to your first call in four steps.
Register a reseller account
Create an account at revolixgaming.com and complete the verification process. Your reseller account is reviewed by our team.
Request API access
Submit an access request from your console. Once an administrator approves it, the API keys section becomes available in your account.
Generate an API key
Generate a key from your console, give it a label (such as production-bot) and store it securely. The full key is displayed only once and cannot be recovered.
curlcurl -X POST https://api.revolixgaming.com/v1/keys \ -H "Authorization: Bearer $RX_KEY" \ -H "Content-Type: application/json" \ -H "Idempotency-Key: $(uuidgen)" \ -d '{"name":"production-bot","scopes":["orders:write","wallet:read"]}'Make your first call
Use your key to browse the product catalog. Pricing reflects your reseller tier or any custom rate configured on your account.
curlcurl https://api.revolixgaming.com/v1/products \ -H "Authorization: Bearer $RX_KEY"
Create your first order
Once your key is ready and your wallet holds an RX Points balance, place an order with an Idempotency-Key:
curl -X POST https://api.revolixgaming.com/v1/orders \
-H "Authorization: Bearer $RX_KEY" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: $(uuidgen)" \
-d '{
"product_item_id": 12345,
"cust_account": {"user_id": "12345678", "server_id": "1234"},
"qty": 1
}'Keep your API key out of source code. Use an environment variable or a dedicated secret manager in production.