curl -X GET 'https://api.countrystatecity.in/v1/currency/US' \
-H 'X-CSCAPI-KEY: YOUR_API_KEY'
{
"country": "US",
"currency": {
"code": "USD",
"name": "United States dollar",
"symbol": "$"
}
}
Currency Endpoints
Get Currency by Country
Retrieve the official currency for a single country by ISO2, ISO3, or numeric ID
GET
/
v1
/
currency
/
{ciso}
curl -X GET 'https://api.countrystatecity.in/v1/currency/US' \
-H 'X-CSCAPI-KEY: YOUR_API_KEY'
{
"country": "US",
"currency": {
"code": "USD",
"name": "United States dollar",
"symbol": "$"
}
}
Retrieve the currency used by a single country. The path parameter accepts three forms for flexibility:
- ISO 3166-1 alpha-2 code (e.g.,
US,IN) - ISO 3166-1 alpha-3 code (e.g.,
USA,IND) - Numeric country ID (e.g.,
233for the United States in our database)
Availability: Supporter plan and above. Returns
403 on lower tiers.Responses are cached server-side for 24 hours. Equivalent identifier forms (e.g.,
1 and 001) resolve to the same cache slot.Authentication
Your API key for authentication
Path Parameters
ISO2 code, ISO3 code, or numeric country ID. Case-insensitive for ISO codes.
Response
ISO2 code of the country (e.g.,
"US")Currency information
Show properties
Show properties
ISO 4217 currency code (e.g.,
"USD"). Always present — endpoint returns 404 if the country has no currency on record.Full currency name (e.g.,
"United States dollar"). May be null for edge-case territories.Unicode currency symbol (e.g.,
"$"). May be null — fall back to code when rendering.curl -X GET 'https://api.countrystatecity.in/v1/currency/US' \
-H 'X-CSCAPI-KEY: YOUR_API_KEY'
{
"country": "US",
"currency": {
"code": "USD",
"name": "United States dollar",
"symbol": "$"
}
}
Related Endpoints
- List All Currencies — every country’s currency in one call, with optional reverse lookup
- Get Country Details — full country record including currency fields inline
Was this page helpful?
⌘I