Location-Based Pricing Test
This page demonstrates the location-based pricing system with different regional configurations.
Automatic Detection
Pricing Test - Location-Based Pricing Demo
Test page for location-based pricing functionality
* Unlimited images includes the first 100,000 images, then transparent pay-as-you-go pricing applies.
All prices are converted from USD at current exchange rates and updated daily.
Manual Region Testing
European Pricing
Region: EU
† Unlimited images includes the first 100,000 images, then pay-as-you-go pricing applies.
Prices shown in your local currency when available.
UK Pricing
Region: GB
† Unlimited images includes the first 100,000 images, then pay-as-you-go pricing applies.
Prices shown in your local currency when available.
Canadian Pricing
Region: CA
† Unlimited images includes the first 100,000 images, then pay-as-you-go pricing applies.
Prices shown in your local currency when available.
Australian Pricing
Region: AU
† Unlimited images includes the first 100,000 images, then pay-as-you-go pricing applies.
Prices shown in your local currency when available.
Norwegian Pricing
Region: NO
† Unlimited images includes the first 100,000 images, then pay-as-you-go pricing applies.
Prices shown in your local currency when available.
Swedish Pricing
Swedish Pricing
Region: SE
† Unlimited images includes the first 100,000 images, then pay-as-you-go pricing applies.
Prices shown in your local currency when available.
Japanese Pricing
Region: JP
† Unlimited images includes the first 100,000 images, then pay-as-you-go pricing applies.
Prices shown in your local currency when available.
Swiss Pricing
Region: CH
† Unlimited images includes the first 100,000 images, then pay-as-you-go pricing applies.
Prices shown in your local currency when available.
Singapore Pricing
Region: SG
† Unlimited images includes the first 100,000 images, then pay-as-you-go pricing applies.
Prices shown in your local currency when available.
Indian Pricing
Region: IN
† Unlimited images includes the first 100,000 images, then pay-as-you-go pricing applies.
Prices shown in your local currency when available.
Danish Pricing
Region: DK
† Unlimited images includes the first 100,000 images, then pay-as-you-go pricing applies.
Prices shown in your local currency when available.
South Korean Pricing
Region: KR
† Unlimited images includes the first 100,000 images, then pay-as-you-go pricing applies.
Prices shown in your local currency when available.
New Zealand Pricing
Region: NZ
† Unlimited images includes the first 100,000 images, then pay-as-you-go pricing applies.
Prices shown in your local currency when available.
JavaScript Testing
Open your browser’s developer console and try these commands:
```javascript
// Test different regions
setPricingRegion('EU'); // European pricing
setPricingRegion('GB'); // UK pricing
setPricingRegion('CA'); // Canadian pricing
setPricingRegion('AU'); // Australian pricing
setPricingRegion('NO'); // Norwegian pricing
setPricingRegion('SE'); // Swedish pricing
setPricingRegion('JP'); // Japanese pricing
setPricingRegion('CH'); // Swiss pricing
setPricingRegion('SG'); // Singapore pricing
setPricingRegion('IN'); // Indian pricing
setPricingRegion('DK'); // Danish pricing
setPricingRegion('KR'); // South Korean pricing
setPricingRegion('NZ'); // New Zealand pricing
setPricingRegion('default'); // US pricing
// Check current pricing data
console.log('Current region:', sessionStorage.getItem('pricingRegion'));
console.log('Detected country:', sessionStorage.getItem('detectedCountry'));
## Technical Details
- **Geolocation API**: Uses ipapi.co for IP-based location detection
- **Caching**: Location data cached in sessionStorage
- **Fallback**: Defaults to USD pricing if detection fails
- **Privacy**: No personal data stored, only country code detected