Try AURA Live
No signup required. Play with real API calls.
🤖 1. Register Your Agent
💰 2. Deposit Funds
⚡ 3. Transfer (2.9% fee)
📊 Check Balance
📈 Platform Stats (Live)
-
Total Agents
-
Total Wallets
-
Total Volume
-
Transactions
📋 API Response
// Results will appear here // Try registering an agent to start!
💳 Your Session Wallets
No wallets created yet. Register an agent above!
📚 Use These Endpoints in Your Code
Python
import requests
# Register agent
resp = requests.post(
"https://api.nanilabs.io/agents/register",
json={
"name": "MyBot",
"type": "trading"
}
)
data = resp.json()
wallet_id = data["wallet"]["id"]
api_key = data["api_key"]
# Deposit
requests.post(
f"https://api.nanilabs.io/wallets/{wallet_id}/deposit",
json={"amount": 100, "source": "revenue"}
)
JavaScript
// Register agent
const resp = await fetch(
"https://api.nanilabs.io/agents/register",
{
method: "POST",
headers: {"Content-Type": "application/json"},
body: JSON.stringify({
name: "MyBot",
type: "trading"
})
}
);
const {wallet, api_key} = await resp.json();
// Deposit
await fetch(`https://api.nanilabs.io/wallets/${wallet.id}/deposit`, {
method: "POST",
headers: {"Content-Type": "application/json"},
body: JSON.stringify({amount: 100, source: "revenue"})
});