Skip to content

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/v1

Available Resources

ResourceDescription
ProductsManage your store's products and inventory
OrdersView and fulfill customer orders
CustomersAccess customer information and purchase history
AnalyticsRevenue, sales, and performance metrics
WebhooksConfigure real-time event notifications

Getting Started

Ready to start building? Follow these steps:

  1. Create an API Token - Generate credentials for API access
  2. Make Your First Request - Test the API with a simple call
  3. Set Up Webhooks - Receive real-time notifications
  4. 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:

PlanRate Limit
Starter60 requests/minute
Growth120 requests/minute
Pro300 requests/minute
EnterpriseCustom

Rate limit headers are included in every response:

X-RateLimit-Limit: 60
X-RateLimit-Remaining: 58
X-RateLimit-Reset: 1700745660

Need Help?

Built for game developers, by game developers.