GET
/
v2
/
payments
/
rails
/
payment-methods
curl --request GET \
  --url https://api.cdp.coinbase.com/platform/v2/payments/rails/payment-methods \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "8e03978e-40d5-43e8-bc93-6894a57f9324",
    "type": "card",
    "currency": "USD",
    "actions": [
      "source",
      "target"
    ],
    "limits": {
      "sourceLimit": {
        "amount": "100",
        "currency": "USD"
      },
      "targetLimit": {
        "amount": "100",
        "currency": "USD"
      }
    }
  }
]

Authorizations

Authorization
string
header
required

A JWT signed using your CDP API Key Secret, encoded in base64. Refer to the Generate Bearer Token section of our Authentication docs for information on how to generate your Bearer Token.

Response

200
application/json

Successfully retrieved the payment methods.

The response is of type object[].