← Intelligence Mashups

Business Expansion

GET /mashup/business/expansion

Get a comprehensive market analysis report for international business expansion, combining economic indicators (GDP, growth, inflation), currency stability, VAT rates, workforce data, and comparison to your home market. Returns a structured report with key metrics for evaluating whether a country is a viable expansion target. Useful for market entry strategy, international business development, and investment due diligence.

Parameters

country required

Target market

home optional default: US

Home market

Example Requests

Basic usage
curl "https://nordapi.ee/api/v1/mashup/business/expansion?country=PL"
Evaluate Poland for business expansion
curl "https://nordapi.ee/api/v1/mashup/business/expansion?country=PL"
Evaluate Japan from a UK home market
curl "https://nordapi.ee/api/v1/mashup/business/expansion?country=JP&home=GB"
Evaluate Estonia for Nordic expansion
curl "https://nordapi.ee/api/v1/mashup/business/expansion?country=EE&home=NO"

Live Response

{
  "currency_analysis": {
    "currency": null,
    "trend": null,
    "volatility": null
  },
  "economic_profile": {},
  "investment": null,
  "scores": {
    "currency_stability": 5.0,
    "market_size": 3.0,
    "tax_competitiveness": 5.0
  },
  "success": true,
  "target": {
    "capital": null,
    "code": "PL",
    "country": null,
    "currency": null,
    "languages": null,
    "population": null,
    "region": null
  },
  "tax": {
    "home_vat": null,
    "target_vat": null
  },
  "workforce": {
    "business_days_per_year": 261,
    "life_expectancy": null,
    "public_holidays": 0,
    "universities": 100
  }
}