One API call. Country detection, purchasing power parity data, suggested discount, and local currency price. Built on the edge for sub-millisecond responses.
// Click "Try it" to see the response
Send a GET request with your base price. We detect the user's country automatically from their IP.
We return the fair price, discount percentage, local currency amount, and VPN detection — all in one response.
Apply the discount in your checkout. Convert more international customers with localized pricing.
Works with any language. No SDK required.
curl "https://parity-api.<you>.workers.dev/v1/pricing?base_price=99" \
-H "X-API-Key: parity_live_xxx"
const res = await fetch(
`${API}/v1/pricing?base_price=99`,
{ headers: { "X-API-Key": key } }
);
const data = await res.json();
console.log(data.pricing);
import requests
r = requests.get(
f"{API}/v1/pricing",
params={"base_price": 99},
headers={"X-API-Key": key}
)
print(r.json()["pricing"])
Start free. Scale as you grow.
per month
per month
per month
Enter your email. Get an API key instantly. No credit card required.