API reference summary
Quick overview of CardPlusPay API endpoints. For full request/response schemas, parameters, and examples, use the interactive API Reference (OpenAPI/Redoc).
Base URL: https://api.cardpluspay.com/v1
Authentication: Header X-API-Key: YOUR_API_KEY
| Method | Endpoint | Purpose |
|---|---|---|
| GET | / | API info, version, resource URLs, documentation and contact links |
| GET | /balance | Account balance (e.g. USD) |
| GET | /catalog | List/filter products (item_id, brand, per_page, sort_by, order) |
| GET | /catalog/{type} | Products by category/type |
| POST | /orders | Create order (item_code, quantity, optional email) |
| POST | /orders/check | Check stock for a product (item_id, quantity) |
| GET | /orders | List orders (per_page, status, sort_by, order) |
| GET | /orders/{id} | Single order details and status (order_id from create response) |
All responses use the envelope: success, message, data. See Concepts for details.