Skip to content

Quickstart

  1. 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"
  2. 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 200 response with your key details.

  3. 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"
  4. 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"
  5. 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"
  6. 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"