PaymentsList available payment methods

List available payment methods

Returns available payment methods for the authenticated application and request amount.

curl -X GET "https://api.example.com/api/v1/payment-methods?currency=example_string&amount=example_string" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)"
{
  "paymentMethods": [
    "card",
    "apple_pay"
  ],
  "warnings": [
    "No active payment provider connections found"
  ]
}
GET
/api/v1/payment-methods
GET
Base URLstring

Target server for requests. Edit to use your own host.

Bearer Token (JWT)
Bearer Tokenstring
Required

Bearer token (JWT) - just enter the token, "Bearer" prefix will be added automatically

query
currencystring
Required

ISO currency code in uppercase, for example AUD or EUR.

Min length: 3 • Max length: 3 • Pattern: ^[A-Z]{3}$
query
amountstring
Required

Transaction amount as a decimal string.

Pattern: ^\d+(\.\d+)?$
Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token (JWT). Authentication token required.

Query Parameters

currencystring
Required

ISO currency code in uppercase, for example AUD or EUR.

amountstring
Required

Transaction amount as a decimal string.

Responses

paymentMethodsstring[]
Required

Payment methods currently available for the application.

warningsstring[]

Non-blocking warnings that explain availability constraints for some methods.