Country and Currency

Get available country and currency

📘

POST METHOD

🚧

Note

To display for all available countries and currency, payload will not be required. For country, ISO code of 2 characters is required

{{baseUrl}}/api/v2/country-currency
{
    "country":"NO"
}
FieldRequiredData TypeDescription
countrytrueStringLength: 2, Country ISO code i.e US.

👍

Response

{
    "status": true,
    "content": {
        "data": {
            "N": "NORWAY",
            "I": "NO",
            "D": "+47",
            "CURR": [
                {
                    "N": "Norwegian Krone",
                    "I": "NOK"
                },
                {
                    "N": "US Dollar",
                    "I": "USD"
                },
                {
                    "N": "Euro",
                    "I": "EUR"
                }
            ]
        }
    }
}