Skip to main content
POST
/
v1
/
ramp
/
{subaccountId}
/
banking
/
conversions
/
quote
Get Conversion Quote
curl --request POST \
  --url https://api.bullring.finance/v1/ramp/{subaccountId}/banking/conversions/quote \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "fromCurrency": "USD",
  "toCurrency": "NGN",
  "amount": 17
}
'
{
  "fromCurrency": "USD",
  "toCurrency": "NGN",
  "amount": 17,
  "feeAmount": 0,
  "netAmount": 17,
  "estimatedReceived": 10179.6,
  "rate": 598.8,
  "quoteTime": "2025-12-16T18:04:55.841Z"
}

Authorizations

x-api-key
string
header
required

Path Parameters

subaccountId
string<uuid>
required

The unique identifier of the subaccount

Body

application/json
fromCurrency
string
required
Example:

"USD"

toCurrency
string
required
Example:

"NGN"

amount
number
required
Example:

17

Response

200 - application/json

Successful quote

fromCurrency
string
Example:

"USD"

toCurrency
string
Example:

"NGN"

amount
number
Example:

17

feeAmount
number
Example:

0

netAmount
number
Example:

17

estimatedReceived
number
Example:

10179.6

rate
number
Example:

598.8

quoteTime
string<date-time>
Example:

"2025-12-16T18:04:55.841Z"