Introduction
Welcome to the Pixlpay Developer Documentation! This guide will help you integrate your applications with Pixlpay's powerful commerce platform.
What is Pixlpay?
Pixlpay is a commerce platform designed specifically for game servers and gaming communities. We provide everything you need to sell digital products, subscriptions, in-game items, and more.
What can you build?
With the Pixlpay API, you can:
- Automate order fulfillment - Process orders and deliver items to players automatically
- Sync inventory - Keep product data synchronized across multiple platforms
- Build custom dashboards - Create analytics and reporting tailored to your needs
- Integrate with Discord - Automatically assign roles and send notifications
- Connect game servers - Deliver purchases directly to players in-game
API Overview
The Pixlpay API is organized around REST principles. Our API:
- Uses predictable, resource-oriented URLs
- Accepts JSON request bodies
- Returns JSON responses
- Uses standard HTTP response codes
- Implements bearer token authentication
Base URL
All API requests are made to your store's subdomain:
https://yourstore.pixlpay.net/api/external/v1Available Resources
| Resource | Description |
|---|---|
| Products | Manage your store's products and inventory |
| Orders | View and fulfill customer orders |
| Customers | Access customer information and purchase history |
| Analytics | Revenue, sales, and performance metrics |
| Webhooks | Configure real-time event notifications |
Getting Started
Ready to start building? Follow these steps:
- Create an API Token - Generate credentials for API access
- Make Your First Request - Test the API with a simple call
- Set Up Webhooks - Receive real-time notifications
- Explore Examples - Copy working code in your language
Authentication
All API requests require authentication using a Bearer token:
bash
curl https://yourstore.pixlpay.net/api/external/v1/products \
-H "Authorization: Bearer YOUR_API_TOKEN"Learn more about authentication.
Rate Limits
API requests are rate-limited per token:
| Plan | Rate Limit |
|---|---|
| Starter | 60 requests/minute |
| Growth | 120 requests/minute |
| Pro | 300 requests/minute |
| Enterprise | Custom |
Rate limit headers are included in every response:
X-RateLimit-Limit: 60
X-RateLimit-Remaining: 58
X-RateLimit-Reset: 1700745660Need Help?
- Discord: Join our developer community
- Email: developer@pixlpay.net
- API Status: status.pixlpay.net