Skip to main content
GET
/
v1
/
payment-methods
Get available payment methods
curl --request GET \
  --url https://api-global.fastpaybrasil.com/v1/payment-methods \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "id": "2vorkDcXyvzifL63YX09S9VqcnI",
    "name": "rapipago",
    "countries": [
      "ARG",
      "BRA"
    ],
    "currencies": [
      "USD",
      "ARS"
    ],
    "description": "Rapipago"
  }
]

Authorizations

Authorization
string
header
required

HTTP Basic authentication. Use your secret key as the username and an empty string as password. The API key should be base64 encoded in the format 'username:' when sending the Authorization header.

Query Parameters

merchantId
string

Filter payment methods by merchant ID

Example:

"2vorkDcXyvzifL63YX09S9VqcnI"

currency
string

Filter payment methods by currency

Example:

"USD"

Response

Successfully retrieved the list of payment methods

id
string

The unique identifier of the payment method

Example:

"2vorkDcXyvzifL63YX09S9VqcnI"

name
string

The name of the payment method

Example:

"rapipago"

countries
string[]

List of countries where this payment method is available

Example:
["ARG", "BRA"]
currencies
string[]

List of supported currencies for this payment method

Example:
["USD", "ARS"]
description
string

UI name of the payment method

Example:

"Rapipago"