AURX Documentation
Welcome to the AURX documentation center. Here you’ll find everything you need to deploy, integrate, and scale with our GPU cloud platform.
Getting Started
Prerequisites: Make sure you have a valid email address, a secure browser, and access to basic shell tools.
Account Registration: Navigate to the AURX portal, click ‘Sign Up,’ and follow email verification instructions.
API Key Generation: After account verification, visit your dashboard, select ‘API Keys,’ and generate your bearer token for secure requests.
API Reference
AURX provides a comprehensive RESTful API for managing compute resources.
Example endpoints:
POST /deploy
GET /usage
DELETE /instance/:id
All requests require a bearer token—see Authentication section for details.
Integration Guides
Connect programmatically:
Python:
import requests
response = requests.get(‘https://api.aurx.com/usage’, headers={‘Authorization’: ‘Bearer <API_KEY>’})
Node.js:
const axios = require(‘axios’);
axios.post(‘https://api.aurx.com/deploy’, {}, {headers: {Authorization: ‘Bearer <API_KEY>’}})
CLI:
curl -H ‘Authorization: Bearer <API_KEY>’ https://api.aurx.com/usage
Support Contacts
Need help? Email support@aurx.com or WhatsApp +1-555-555-0199. Team available Mon–Fri, 8:00–18:00 UTC.
For urgent requests, tag your subject as ‘Priority’ to expedite.