API Reference

Get Current Currency rates from this API

Overview

This API can be used to fetch the currency rate in KWD for the list of other currencies. Using the get-currency-rate-list API, you can get KWD rate for the currency you want to process.

📘

Request Header

Add "Authorization": "Bearer {Token}" to the request header.

Example

Test - https://sandboxapi.upayments.com/api/v1/get-currency-rate-list

Live - https://uapi.upayments.com/api/v1/get-currency-rate-list

{  
    "status": true,  
    "message": "Data received successfully",  
    "data": {  
        "currencyList": [  
            {  
                "currency": "KWD",  
                "kwd_rate": "1.000"  
            },  
            {  
                "currency": "SAR",  
                "kwd_rate": "0.083"  
            },  
            {  
                "currency": "AED",  
                "kwd_rate": "0.084"  
            },  
            {  
                "currency": "QAR",  
                "kwd_rate": "0.084"  
            },  
            {  
                "currency": "OMR",  
                "kwd_rate": "0.806"  
            },  
            {  
                "currency": "BHD",  
                "kwd_rate": "0.823"  
            },  
            {  
                "currency": "USD",  
                "kwd_rate": "0.310"  
            },  
            {  
                "currency": "EUR",  
                "kwd_rate": "0.301"  
            }  
        ]  
    }  
}