- API Reference — base URL, authentication, deployments, and webhooks.
- Database — provision and manage managed databases from the CLI or Node SDK.
- CDN — upload assets, list files, check bandwidth, and pull edge traffic logs.
- CLI — install the
pxxlcommand and deploy from your terminal with SpaceDrop. - Domain Reseller — search availability, fetch TLD pricing, and inspect invoices.
Postman Collection
To quickly explore all available endpoints, download the curated Pxxl Platform Postman collection: Download Pxxl Platform Postman Collection After importing the collection, set two environment variables before sending any requests:base_url— for example,https://gateway.pxxl.dev/api/v3bearer_token— your platform API key from Dashboard > API Keys
Base URL
Every API request targets the following base URL:Common API Areas
Use the API for server-side automation only. Keep API keys in backend secrets and expose only your own controlled endpoints to browsers or mobile clients.| Area | Typical Use |
|---|---|
| Deployments | Read deployment status, track build results, and connect external monitors. |
| Projects | Query project metadata and support internal operations tooling. |
| CDN | Upload, list, and audit CDN assets from a backend service. |
| Usage | Review workspace usage for reporting or alerts. |
| OAuth integrations | Build permissioned integrations that users explicitly authorize. |
| Webhooks | Receive signed event notifications when dashboard activity changes. |
API Integration Checklist
Before shipping any custom API integration, confirm that your backend handles each of these cases:
- API Key Scopes: Ensure your key is limited to the exact scopes your integration requires.
- Rate Limiting: Guard loops to handle HTTP
429 Too Many Requestsresponses gracefully using exponential backoff. - Input Validation: Validate all request payloads before forwarding them to Pxxl.
- Token Expiration: If you use OAuth tokens, implement active validation loops to request fresh tokens before executing user actions.
Explore the API
Authentication
Create scoped API keys and attach them to every platform request using the
Authorization header.Deployments API
Query deployment status, read project metadata, and subscribe to signed deployment webhooks.
Database API
Provision Postgres, MySQL, MongoDB, Redis, and ClickHouse databases from the CLI or Node SDK.
CDN API
Upload files to public or private storage spaces, list assets, and retrieve bandwidth usage and proxy logs.
Pxxl CLI
Install the
pxxl command for SpaceDrop deploys, env management, database control, and CDN uploads.Domain Reseller
Search domain availability, fetch TLD pricing, and manage reseller invoices from your backend.
