Skip to main content
GET
/
platform
/
v1
/
payment-methods
cURL
curl --request GET \
  --url https://api.moonpay.com/platform/v1/payment-methods \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "paymentMethodConfigs": [
      {
        "type": "apple_pay",
        "capabilities": {
          "supportedCurrencies": [
            "USD"
          ],
          "supportedTransactionTypes": [
            "buy"
          ],
          "allowsDeletion": false
        },
        "availability": {
          "active": true
        }
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header using an access token.

Example: Authorization: Bearer <accessToken>

Query Parameters

configs
boolean

When false, omits paymentMethodConfigs from the response. Defaults to true.

Response

The request has succeeded.

data
object
required