Version 2.1.0● Live
Last updated: Dec 2024

Get Started in 5 Minutes

Start building on Aurlink with our step-by-step guide. From API key to AI inference in minutes.

High throughput (12,500+ TPS)
AI-optimized gas fees
Cross-chain interoperability
Real-time market predictions
Enterprise-grade security
24/7 monitoring and support
1

Get Your API Key

Sign up and generate your API key from the dashboard

// Visit dashboard
https://dashboard.aurlink.io

// Create account and navigate to:
Developer Settings → API Keys → Generate New Key

Pro Tips:

  • Store your API key securely
  • Set appropriate permissions for your use case
2

Make Your First API Call

Test connectivity with a simple network info request

curl -X GET \
  -H "X-API-Key: YOUR_API_KEY" \
  https://api.aurlink.io/v1/network/info

Pro Tips:

  • Use testnet for development
  • Check rate limits
3

Send Your First Transaction

Execute a transaction on the Aurlink network

curl -X POST \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "from": "0xYourAddress",
    "to": "0xRecipientAddress", 
    "value": "1000000000000000000",
    "data": "0x"
  }' \
  https://api.aurlink.io/v1/transactions/send

Pro Tips:

  • Start with small amounts
  • Use testnet tokens first
4

Try AI Inference

Use the Neural Optimization Layer for predictions

curl -X POST \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "price_prediction_v2",
    "input": {
      "historical_prices": [100, 105, 110, 108, 115],
      "market_indicators": { "volume": 5000000 }
    }
  }' \
  https://api.aurlink.io/v1/ai/inference

Pro Tips:

  • Experiment with different models
  • Check model accuracy metrics

Ready to Build?

Explore our detailed documentation for advanced features and use cases.