Regional Price Calculator API Documentation

Integrate regional price recommendations into your own app, website, or workflow.

Overview

The Regional Price Calculator API allows you to retrieve recommended prices for software, apps, or games in different countries based on purchasing power, wage, and other economic factors.

Endpoints

1. Get Country List

GET /api/countries
			

Returns a list of supported countries and their ISO codes.

2. Calculate Regional Prices

POST /api/calculate
Content-Type: application/json

{
  "price": 19.99,
  "currency": "USD",
  "country": "USA",
  "mode": "hybrid"
}
			

Returns recommended prices for all countries.
Parameters:

Sample Response

{
  "results": [
    { "country": "USA", "price": 19.99, "currency": "USD" },
    { "country": "Turkey", "price": 5.99, "currency": "TRY" },
    { "country": "Germany", "price": 17.99, "currency": "EUR" }
    // ...more countries
  ]
}
			

Authentication

Currently, the API is open for public testing. For production use, you will need an API key. Contact us at info@regionalpriceconverter.com for access.

Support

For questions, feature requests, or bug reports, please contact us.