# Exchange Rate

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

&#x20;<mark style="color:red;">`GET`</mark>  `{{ BASE }}/exchange-rate/{currencyPair}`

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

**Path Parameters:** [​](https://docs.sudo.africa/reference/transfer-rate#parameter-currency-pair)currencyPair **string**&#x20;

Exchange Currency Pair. Example `USDNGN`.

Response Body

{% code fullWidth="false" %}

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

{% endcode %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://padiwise.gitbook.io/padiwise/virtual-cards/exchange-rate.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
