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=="
}Get a list of 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=="
}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.
The number of resources to return per page.
The token for the next page of resources, if any.
The list of payment methods.
Show child attributes
The identifier of the payment method.
"8e03978e-40d5-43e8-bc93-6894a57f9324"
The type of payment method.
Payment methods represent different rails for moving money. Common values include:
ach - Automated Clearing House transfers for US bank accountsfedwire - Federal Reserve Wire Network transfers for US bank accountsach, fedwire "ach"
Asset symbol for the payment method.
"usd"
Name for the payment method.
"ALLY BANK ******1234"
The verified status of the payment method.
true
Whether or not this payment method can perform deposits.
true
Whether or not this payment method can perform withdrawals.
false
Whether or not this payment method can perform outbound payments.
true
List of ACH limits for the payment method.
Show child attributes
The remaining amount available in the limit.
{ "amount": "1000.00", "asset": "usd" }The amount already used from the limit.
{ "amount": "500.00", "asset": "usd" }The total limit amount.
{ "amount": "1500.00", "asset": "usd" }Period of the limit.
unknown The period is unknown.daily The limit is daily.weekly The limit is weekly.monthly The limit is monthly.biweekly The limit is bi-weekly.unknown, daily, weekly, monthly, biweekly "daily"
The description of the limit.
"Daily ACH transfer limit."
[
{
"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."
}
]The token for the next page of items, if any.
"eyJsYXN0X2lkIjogImFiYzEyMyIsICJ0aW1lc3RhbXAiOiAxNzA3ODIzNzAxfQ=="
Was this page helpful?