API-first PPP pricing

Fair pricing for a
global audience

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

How it works

1

Add one API call

Send a GET request with your base price. We detect the user's country automatically from their IP.

2

Get PPP-adjusted pricing

We return the fair price, discount percentage, local currency amount, and VPN detection — all in one response.

3

Show fair prices

Apply the discount in your checkout. Convert more international customers with localized pricing.

Dead simple integration

Works with any language. No SDK required.

curl
curl "https://parity-api.<you>.workers.dev/v1/pricing?base_price=99" \
  -H "X-API-Key: parity_live_xxx"
JavaScript
const res = await fetch(
  `${API}/v1/pricing?base_price=99`,
  { headers: { "X-API-Key": key } }
);
const data = await res.json();
console.log(data.pricing);
Python
import requests

r = requests.get(
  f"{API}/v1/pricing",
  params={"base_price": 99},
  headers={"X-API-Key": key}
)
print(r.json()["pricing"])

Simple pricing

Start free. Scale as you grow.

Free

$0

per month

  • 1,000 requests/month
  • All countries
  • Country auto-detection
  • VPN detection
POPULAR

Starter

$9

per month

  • 50,000 requests/month
  • Everything in Free
  • Priority support

Pro

$29

per month

  • 500,000 requests/month
  • Everything in Starter
  • Dedicated support

Get your API key

Enter your email. Get an API key instantly. No credit card required.