Live Endpoints
Production API endpoints by region
Live Endpoints
Production API endpoints for Plexy services.
API endpoints
| Environment | Endpoint |
|---|---|
| Production | https://api.plexy.money |
Regional endpoints
For optimal latency, use region-specific endpoints:
| Region | Endpoint |
|---|---|
| Global | https://api.plexy.money |
| Europe | https://api.eu.plexy.money |
| Asia Pacific | https://api.ap.plexy.money |
| United States | https://api.us.plexy.money |
Regional endpoints automatically route to the nearest data center. Use the global endpoint unless you have specific latency requirements.
JavaScript SDK
| Environment | URL |
|---|---|
| Production | https://js.plexy.money/v1 |
<script src="https://js.plexy.money/v1"></script>Webhook IPs
If you use IP allowlisting, whitelist these IP ranges for webhook delivery:
52.89.214.238/32
34.212.75.30/32
54.187.174.169/32
54.187.205.235/32IP addresses may change. Subscribe to our status page for notifications.
Status page
Monitor API status and subscribe to updates:
- Status: status.plexy.money
- API Status: status.plexy.money/api
Version in URL
The API version is specified in the path:
https://api.plexypay.com/v2/payments
^^
API versionUsing a regional endpoint
Pass the regional base URL in your requests to reduce latency:
curl -X POST https://api.eu.plexy.money/v2/payments \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"amount": 1000, "currency": "EUR"}'See also