Create API Key and Make First Request

This is your guide to getting started with Busha. If you are new to the Busha API, this is where you should start.

Step 1: Create a new Busha accountCopied!

Visit https://sandbox.app.busha.so to create your test account.

Step 2: Enable 2-Factor AuthenticationCopied!

Log in to your dashboard and navigate to “Settings > Security” and follow the steps to enable 2-Factor Authentication with your preferred Authenticator app. For more details, see the Guide on 2-Factor Authentication.

Step 2: Generate API credentialsCopied!

  1. Log into your sandbox dashboard

  2. Navigate to Settings > Developer Tools

  3. Select "API Keys"

  4. Click "Create API Key"

This creates the following values for your usage: encoded base64 authorization token, an API key, and a Secret key.

A pop-up window displays your API key. Immediately copy and securely store the secret key; it will not be redisplayed.

Store your API keys securely and never share them. Don't commit these credentials to version control systems.

Step 3: Select API environmentCopied!

Our sandbox environment uses the following base URL:

https://api.sandbox.busha.so

The live environment uses the following base URL:

https://api.busha.co

Make sure to include your generated auth key in the Authorization header:

Authorization: Bearer YOUR_SECRET_TOKEN

Step 4: Make your first requestCopied!

Test your setup by fetching your wallet balances:

curl -X GET "https://api.busha.co/v1/accounts" \
  -H "Authorization: Bearer YOUR_SECRET_TOKEN" \
  -H "Content-Type: application/json"