PixelWave

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

  1. Obtain your API credentials (JWT token) from your PixelWave manager
  2. Choose your integration method: Host-to-Host or Payment Form
  3. Implement the API calls and webhook handler
  4. Test in the sandbox environment
  5. Go live

Base URL

https://api.admin-pixelwave.com

Authentication

All API requests require a JWT Bearer token in the Authorization header:

Authorization: Bearer YOUR_JWT_TOKEN

Response Format

All endpoints return a standard JSON response:

{
  "result": {
    "status": "success",
    "x-request-id": "uuid",
    "codeError": "none",
    "codeErrorExt": "none",
    "message": ""
  },
  "data": { ... },
  "totalNumberRecords": 0
}
FieldDescription
result.statussuccess or warning
result.x-request-idUnique request identifier for support
result.codeErrorError code (see Error Codes)
dataResponse payload (null on error)
totalNumberRecordsTotal count for paginated responses

On this page