logo
Merchant Payment Methods APIGet Payment Methods

Get Payment Methods

curl -X GET "https://api.example.com/v1/api/v1/payment-methods/?currency=null" \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: YOUR_API_KEY"
{
  "success": true,
  "data": [
    {
      "name": "John Doe",
      "method_code": "example_string",
      "min_sum": "example_string",
      "max_sum": "example_string",
      "logo_url": "null",
      "payment_time": 42,
      "currency": {
        "code": "example_string",
        "name": "John Doe",
        "symbol": "example_string"
      }
    }
  ]
}
GET
/api/v1/payment-methods/
GET
API Key (header: X-Api-Key)
X-Api-Keystring
Required

Merchant API Key.

Merchant API Key.
query
currencystring

Filter by currency code, e.g. UAH, EUR. Case-insensitive.

Request Preview
Response

Response will appear here after sending the request

Authentication

header
X-Api-Keystring
Required

API Key for authentication. Merchant API Key.

Query Parameters

currencystring

Filter by currency code, e.g. UAH, EUR. Case-insensitive.

Responses

successboolean
Required
dataarray
Required