From commodity trading and ESG reporting to e-commerce and mobile apps - see how our API powers global applications with 60+ years of economic and environmental data
Display country information, currency conversion, language translation, and travel requirements in booking platforms.
Validate shipping addresses, display local currencies, calculate international shipping, and comply with regional regulations.
Enhance analytics dashboards with geographic data, segment users by country, and generate international reports.
Enrich customer profiles with country data, automate regional workflows, and personalize communication by location.
Build geography learning apps, quizzes, interactive maps, and educational content about countries worldwide.
Add country selection, phone number validation, currency display, and localization to mobile applications.
Access economic indicators, stock exchanges, major corporations, historical GDP, and tax rates for investment analysis and risk assessment.
Regional memberships, government structures, visa requirements, and trade data for policy analysis and international relations.
Major seaports, airports, infrastructure data, import/export statistics, and visa requirements for optimizing global supply chains.
Cultural data, languages, religions, national symbols, and demographics for targeted marketing campaigns and content localization.
Life expectancy, demographics, R&D spending in health sector, and infrastructure data for medical research and global health initiatives.
Complete visa requirements matrix (280×280), passport rankings, entry requirements, and government structures for immigration consulting.
60+ years of production data, land use changes, food balance sheets, commodity prices, and trade indicators for hedging, forecasting, and agricultural derivatives trading.
Emissions by sector, climate change indicators, SDG progress tracking, bioenergy production, and environmental metrics for corporate ESG disclosures and carbon accounting.
60+ years of GDP, inflation (CPI), FDI flows, and trade data for econometric modeling, recession prediction, geopolitical risk assessment, and market intelligence.
Simple integration examples in popular languages
// Get country by ISO code
const response = await fetch('https://api.isocountry.com/v1/countries/US', {
headers: { 'X-API-Key': 'your_api_key' }
});
const country = await response.json();
console.log(country.name); // "United States"
console.log(country.currencies[0].symbol); // "$"
import requests
response = requests.get(
'https://api.isocountry.com/v1/countries/FR',
headers={'X-API-Key': 'your_api_key'}
)
country = response.json()
print(f"{country['name']} - {country['capital']}")
# Output: France - Paris
$ch = curl_init('https://api.isocountry.com/v1/countries/JP');
curl_setopt($ch, CURLOPT_HTTPHEADER, ['X-API-Key: your_api_key']);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$country = json_decode(curl_exec($ch), true);
echo $country['name']; // "Japan"
echo $country['capital']; // "Tokyo"