Country Currency API

A simple and open-source API to fetch currency details by country.

View on GitHub

About the API

The Country Currency API is designed to provide details about a country's currency, including the currency name, symbol, and code. It's perfect for applications that require country-based currency data. Contributions are welcome via GitHub!

How It Works

  1. Send a GET request to the API endpoint with the country name.
  2. Receive a JSON response containing the currency details.
GET /api/country-currency/{country}

Example

Request
GET /api/country-currency/United States
Response

{
    "country": "United States",
    "currency_name": "United States Dollar",
    "currency_symbol": "$",
    "currency_code": "USD"
}
            

Open Source and Contributions

This API is open source and welcomes contributions from the community. You can find the code, report issues, or contribute new features on our GitHub repository:

Go to GitHub