Make Your First Request

Welcome to the Busha API! If you're new to our API, this guide will help you get started quickly.

Select API Environment

Use the following base URLs depending on your chosen environment:

Sandbox (Testing Environment):

https://api.sandbox.busha.so

Live (Production Environment):

https://api.busha.co

Set Up Authorization

Include your generated API token in the Authorization header of your requests:

Authorization: Bearer YOUR_SECRET_TOKEN

Make Your First Request

Test your setup by retrieving your wallet balances with the following curl

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

Replace YOUR_SECRET_TOKEN with your actual secret token.