Endpoint map
Complete API Endpoint Map
A quick reference for all documented NeroPay API v2 endpoints.
Endpoint mapGETPOST
Complete endpoint map
| Method | Endpoint | Purpose |
|---|---|---|
| GET | /health | API route health check. |
| GET | /account | Authenticated merchant profile. |
| GET | /balances | Balances for merchant or connected account. |
| GET | /connected-accounts | List platform connected merchants. |
| POST | /connected-accounts | Create connected merchant. |
| POST | /payment-intents | Create payment intent. |
| POST | /payments | Create hosted checkout payment. |
| POST | /keyed-payments | Create keyed payment. |
| POST | /split-payments | Create split payment. |
| POST | /terminal/payments | Create terminal payment. |
| GET | /transactions | List transactions. |
| GET | /transactions/{id} | Retrieve transaction. |
| POST | /transactions/{id}/refund | Refund transaction. |
| POST | /transactions/{id}/cancel | Cancel transaction. |
| GET | /payment-links | List LinkPay links. |
| POST | /payment-links | Create LinkPay link. |
| GET | /bank-accounts | List bank accounts. |
| POST | /bank-accounts | Create bank account. |
| POST | /nerodisburse/bank-accounts | Create NeroDisburse bank account. |
| GET | /payouts | List payouts. |
| POST | /payouts | Create payout. |
| GET | /nerodisburse/payouts | List NeroDisburse payouts. |
| POST | /nerodisburse/payouts | Create NeroDisburse payout. |
| GET | /transfer-schedule | Read transfer schedule. |
| PATCH | /transfer-schedule | Update transfer schedule. |
| GET | /locations | List terminal locations. |
| POST | /locations | Create terminal location. |
| GET | /readers | List terminal readers. |
| POST | /readers | Register reader. |
| DELETE | /readers/{id} | Delete reader. |
| GET | /customers | List customers. |
| POST | /customers | Create customer. |
| GET | /categories | List categories. |
| POST | /categories | Create category. |
| DELETE | /categories/{id} | Delete category. |
| GET | /products | List products. |
| POST | /products | Create product. |
| DELETE | /products/{id} | Delete product. |
| GET | /product-option-groups | List product option groups. |
| POST | /product-option-groups | Create product option group. |
| GET | /global-option-items | List global option items. |
| POST | /global-option-items | Create global option item. |
| GET | /tables | List tables. |
| POST | /tables | Create table. |
| DELETE | /tables/{id} | Delete table. |
| GET | /registers | List registers. |
| POST | /registers | Create register. |
| DELETE | /registers/{id} | Delete register. |
| GET | /pos-staffs | List POS staff. |
| POST | /pos-staffs | Create POS staff. |
| GET | /neropos-orders | List NeroPOS orders. |
| GET | /neroweb-orders | List NeroWeb orders. |
| GET | /booking-settings | Read booking settings. |
| POST | /bookings | Create booking. |
| GET | /bookings | List bookings. |
| POST | /invoices | Create invoice. |
| GET | /invoices | List invoices. |
| GET | /nerowebpages | List NeroWeb pages. |
| GET | /neroweb-settings | List NeroWeb settings. |
| GET | /disputes | List disputes. |
| GET | /loans | List loans. |
| GET | /nerocards | List NeroCards. |
| GET | /webhooks | List webhooks. |
| GET | /webhook-deliveries | List webhook deliveries. |
Pagination
List endpoints may return a meta object with current_page, per_page, total and last_page. Use page and limit query parameters where available.
{
"success": true,
"data": {
"data": [
{
"id": 1,
"status": "active"
}
],
"meta": {
"current_page": 1,
"per_page": 25,
"total": 100,
"last_page": 4
}
}
}