Skip to content

Instantly share code, notes, and snippets.

@malimccalla
Last active June 22, 2019 10:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save malimccalla/ab7e82bec709e91b3cc6b3c56231f1cb to your computer and use it in GitHub Desktop.
Save malimccalla/ab7e82bec709e91b3cc6b3c56231f1cb to your computer and use it in GitHub Desktop.
Stripe currency to bank country codes map
{
"gbp": [{ "country": "United Kingdom", "code": "GB" }],
"eur": [
{ "country": "Austria", "code": "AT" },
{ "country": "Belgium", "code": "BE" },
{ "country": "Denmark", "code": "DK" },
{ "country": "Finland", "code": "FI" },
{ "country": "France", "code": "FR" },
{ "country": "Germany", "code": "DE" },
{ "country": "Gibraltar", "code": "GI" },
{ "country": "Ireland", "code": "IE" },
{ "country": "Italy", "code": "IT" },
{ "country": "Luxembourg", "code": "LU" },
{ "country": "Netherlands", "code": "NL" },
{ "country": "Norway", "code": "NO" },
{ "country": "Portugal", "code": "PT" },
{ "country": "Spain", "code": "ES" },
{ "country": "Sweden", "code": "SE" },
{ "country": "Switzerland", "code": "CH" },
{ "country": "United Kingdom", "code": "GB" },
],
"dkk": [{ "country": "Denmark", "code": "DK" }],
"nok": [{ "country": "Norway", "code": "NO" }],
"sek": [{ "country": "Sweden", "code": "SE" }],
"usd": [{ "country": "United States", "code": "US" }, { "country": "Canada", "code": "CA" }],
"chf": [{ "country": "Switzerland", "code": "CH" }],
"aud": [{ "country": "Australia", "code": "AU" }],
"cad": [{ "country": "Canada", "code": "CA" }],
"hkd": [{ "country": "Hong Kong SAR China", "code": "HK" }],
"jpy": [{ "country": "Japan", "code": "JP" }],
"nzd": [{ "country": "New Zealand", "code": "NZ" }],
"sgd": [{ "country": "Singapore", "code": "SG" }],
"brl": [{ "country": "Brazil", "code": "BR" }],
"mxn": [{ "country": "Mexico", "code": "MX" }],
"myr": [{ "country": "Malaysia", "code": "MY" }]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment