Exchange Rate

Returns the current exchange rate used for card transactions, Returns the exchange rate between two currency pairs. Currently supports USDNGN only.

Retrieves the current exchange rate for the specified currency pair (e.g., USDNGN, USDEUR) from the Sudo Africa API. This rate is used to calculate conversion values during card creation, funding, and withdrawal. Only accessible to verified business accounts with USD card access enabled.

Use this endpoint to display live conversion rates to users or for calculating equivalent NGN amounts before performing card transactions.

Fetch Exchange Rate

GET {{ BASE }}/exchange-rate/{currencyPair}

--header 'Accept: application/json'
--header 'Authorization: Bearer {{  access_token }}'

Path Parameters: currencyPair string

Exchange Currency Pair. Example USDNGN.

Response Body

{
    "status": true,
    "message": "Success",
    "data": [
        {
            'sell' => {{ 1487.03 }},
            'buy' => {{ 1567 }},
            'currency' => 'USDNGN'
        },
       
      
    ]
}

Last updated