Skip to main content
POST
/
api
/
v1
/
business
/
payouts
/
quote
Get a cross-currency payout quote (60s lock)
curl --request POST \
  --url http://localhost:3001/api/v1/business/payouts/quote \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "srcCurrency": "USDC",
  "srcAmount": "<string>",
  "dstAmount": "<string>"
}
'
{
  "success": true,
  "data": {
    "quoteToken": "<string>",
    "srcAmount": "<string>",
    "dstAmount": "<string>",
    "rate": "<string>",
    "axraFee": "<string>",
    "expiresAt": "<string>",
    "rail": "<string>",
    "country": "<string>",
    "currency": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Axra-Business-Id
string

Active business context

Body

application/json
rail
enum<string>
required
Available options:
LOCAL_BANK,
LOCAL_MOMO
country
enum<string>
required

ISO-2 destination country

Available options:
NG,
KE,
ZA,
TZ,
UG,
RW,
MW,
ZM,
BW,
CM
currency
enum<string>
required

Local currency code

Available options:
NGN,
KES,
ZAR,
TZS,
UGX,
RWF,
MWK,
ZMW,
BWP,
XAF
srcCurrency
string
default:USDC
required

Source wallet currency — only USDC supported in v1

srcAmount
string

Decimal string in USDC (e.g. "100.00") — XOR with dstAmount

dstAmount
string

Decimal string in local currency (e.g. "150000") — XOR with srcAmount

Response

OK

success
boolean
required
Example:

true

data
object
required