Skip to main content

Base URL

https://pay-api.holdstation.com

Authentication

Most endpoints require authentication via the Partner-App-Key header. See Authentication for details.

Error Responses

All endpoints return a consistent error format:
{
  "error": "string",
  "error_code": "string",
  "message": "string",
  "detail": "string"
}
Status CodeDescription
200Success
400Bad Request
401Unauthorized
500Internal Server Error

Response Wrapper

Successful responses are wrapped in a standard envelope:
{
  "message": "string",
  "data": { ... }
}