Hex Pay Docs
Api

Get Payment Status

Get payment status for a specific payment

GET
/v1/payments/{paymentID}/status
AuthorizationBearer <token>

JWT token with EdDSA signature. Use Bearer scheme.

In: header

Path Parameters

paymentIDstring

Payment identifier

Response Body

curl -X GET "https://api.hexpay.io/v1/payments/019327c6-2058-7901-b234-56789abcdeff/status"

{
  "status": "PROCESSING"
}

{
  "error": "Invalid authentication token",
  "code": "AUTH_INVALID"
}

{
  "error": "Payment not found",
  "code": "PAYMENT_NOT_FOUND"
}

{
  "error": "Internal server error",
  "code": "INTERNAL_ERROR"
}