PixelWave API
Merchant integration documentation for the PixelWave payment platform
Overview
PixelWave is a payment processing platform that supports multiple currencies, payment methods, and integration modes. This documentation covers everything you need to integrate with PixelWave as a merchant.
Integration Methods
API Reference
Quick Start
- Obtain your API credentials (JWT token) from your PixelWave manager
- Choose your integration method: Host-to-Host or Payment Form
- Implement the API calls and webhook handler
- Test in the sandbox environment
- Go live
Base URL
https://api.admin-pixelwave.comAuthentication
All API requests require a JWT Bearer token in the Authorization header:
Authorization: Bearer YOUR_JWT_TOKENResponse Format
All endpoints return a standard JSON response:
{
"result": {
"status": "success",
"x-request-id": "uuid",
"codeError": "none",
"codeErrorExt": "none",
"message": ""
},
"data": { ... },
"totalNumberRecords": 0
}| Field | Description |
|---|---|
result.status | success or warning |
result.x-request-id | Unique request identifier for support |
result.codeError | Error code (see Error Codes) |
data | Response payload (null on error) |
totalNumberRecords | Total count for paginated responses |