Skip to main content
GET
/
v2
/
payment-methods
List payment methods
curl --request GET \
  --url https://api.cdp.coinbase.com/platform/v2/payment-methods \
  --header 'Authorization: Bearer <token>'
{
  "paymentMethods": [
    {
      "id": "8e03978e-40d5-43e8-bc93-6894a57f9324",
      "type": "ach",
      "asset": "usd",
      "name": "ALLY BANK ******1234",
      "verified": true,
      "allowDeposit": true,
      "allowWithdraw": false,
      "allowOutboundPayment": true,
      "limits": [
        {
          "remaining": {
            "amount": "900.00",
            "asset": "usd"
          },
          "used": {
            "amount": "100.00",
            "asset": "usd"
          },
          "total": {
            "amount": "1000.00",
            "asset": "usd"
          },
          "limitPeriod": "daily",
          "description": "Daily ACH transfer limit."
        }
      ]
    }
  ],
  "nextPageToken": "eyJsYXN0X2lkIjogImFiYzEyMyIsICJ0aW1lc3RhbXAiOiAxNzA3ODIzNzAxfQ=="
}

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.

Query Parameters

pageSize
integer
default:20

The number of resources to return per page.

pageToken
string

The token for the next page of resources, if any.

Response

The list of payment methods.

paymentMethods
object[]
required
Example:
{
"id": "8e03978e-40d5-43e8-bc93-6894a57f9324",
"type": "ach",
"asset": "usd",
"name": "ALLY BANK ******1234",
"verified": true,
"allowDeposit": true,
"allowWithdraw": false,
"allowOutboundPayment": true,
"limits": [
{
"remaining": { "amount": "900.00", "asset": "usd" },
"used": { "amount": "100.00", "asset": "usd" },
"total": { "amount": "1000.00", "asset": "usd" },
"limitPeriod": "daily",
"description": "Daily ACH transfer limit."
}
]
}
nextPageToken
string

The token for the next page of items, if any.

Example:

"eyJsYXN0X2lkIjogImFiYzEyMyIsICJ0aW1lc3RhbXAiOiAxNzA3ODIzNzAxfQ=="