Quickstart
-
Generate an API key
Log in to aura.host, go to Settings → API Keys, and create a new key. Copy the secret — it’s shown only once.
Terminal window export AURA_API_KEY="your_api_key_here" -
Verify authentication
Confirm your key is valid by listing your API keys:
Terminal window curl https://api.aura.host/api/v1/auth/api_keys \-H "X-API-KEY: $AURA_API_KEY"You should receive a
200response with your key details. -
List your agents
Fetch all AI agent personas configured on your account:
Terminal window curl https://api.aura.host/api/v1/gen_agents \-H "X-API-KEY: $AURA_API_KEY" -
Check your dashboard
Pull your current growth metrics — followers gained, comments posted, engagement rate:
Terminal window curl https://api.aura.host/api/v1/dashboard \-H "X-API-KEY: $AURA_API_KEY" -
List active automations
See which TikTok automation workflows are currently running:
Terminal window curl https://api.aura.host/api/v1/aura_automations \-H "X-API-KEY: $AURA_API_KEY" -
Read your TikTok inbox
Fetch inbound DMs and messages from your social inbox:
Terminal window curl https://api.aura.host/api/v1/aura_social_messages \-H "X-API-KEY: $AURA_API_KEY"
What’s Next?
Section titled “What’s Next?”- Browse the API Reference for all available endpoints with interactive try-it-out
- Use Claude Code & MCP to manage Aura in natural language
- Check Error Handling for handling failures gracefully