A country group by code, or every member in it.
Look up a country group by code. The EU is not the Eurozone, and neither is Schengen. Each bloc is its own official member list.
Member lists are effective-dated, so an accession counts from the day it takes effect. Bare GET /bloc lists all twelve.
Pass a code: EU, EEA, EFTA, SCHENGEN, EUROZONE, SEPA, NATO, OECD, G7, ASEAN, GCC, or MERCOSUR. The official name and the current member count come back.
curl "https://api.parseapi.com/bloc/eu" \
-H "X-API-Key: YOUR_API_KEY"{
"bloc": "EU",
"name": "European Union",
"members": 27
}Response fields
Every current member with its flag and calling code. GDPR territory tracks the EEA, so /bloc/eea/countries is that list.
curl "https://api.parseapi.com/bloc/schengen/countries" \
-H "X-API-Key: YOUR_API_KEY"{
"bloc": "SCHENGEN",
"countries": [
{
"country": "AT",
"name": "Austria",
"calling_code": "+43"
},
{
"country": "BE",
"name": "Belgium",
"calling_code": "+32"
},
{
"country": "BG",
"name": "Bulgaria",
"calling_code": "+359"
},
// ... 26 more
]
}Response fields
Every /country response carries a blocs array with that country's memberships.
Questions? Email