Skip to main content
GET
/
v1
/
countries
Returns a list of countries
curl --request GET \
  --url https://api.sandbox.busha.so/v1/countries
{
"status": "success",
"message": "message for success",
"pagination": {
"next_cursor": "MjAyNC0xMC0xNVQxMTowNTo1My45NTkxNDErMDE6MDA=",
"current_entries_size": 20,
"previous_cursor": "MjAyNC0xMC0xNVQxMDowNTo1My45NTIxQjE3MDE6MDA="
},
"data": [
{
"id": "NG",
"name": "Bitcoin",
"currency": {
"code": "BTC",
"name": "Bitcoin",
"symbol": "$"
},
"payment_methods": [
{
"channel": "bank-transfer",
"name": "Bitcoin",
"min": "100",
"max": "100",
"currency": "BTC",
"processing_time": "0-15 minutes"
}
],
"payout_methods": [
{
"channel": "bank-transfer",
"name": "Bitcoin",
"min": "100",
"max": "100",
"currency": "BTC",
"processing_time": "0-15 minutes"
}
]
}
]
}

Headers

X-BU-PROFILE-ID
string

User profile header

Example:

"BUS_YOK8tp5Zga01qOKEsqp07"

Query Parameters

sort
enum<string>

The order to sort the results

Available options:
asc,
desc
Example:

"asc"

cursor
string<string>

The cursor

limit
integer

The number of items to return

Example:

10

country
string
currency
string[]

Filter by currency

withdrawal
boolean

Filter countries by withdrawal support

deposit
boolean

Filter countries by deposit support

Response

Successful response

General response Values

data
object[]
required

List of recipients

status
enum<string>
required
Available options:
success,
error
Example:

"success"

message
string
required
Example:

"message for success"

pagination
object
required