Payment Methods
List Payment Methods
REST API
- Introduction
- Accounts
- Convert
- Data API
- Fees
- Futures
- Orders
- Payment Methods
- Perpetuals
- Portfolios
- Products
- Public
Payment Methods
List Payment Methods
Get a list of payment methods for the current user.
GET
/
api
/
v3
/
brokerage
/
payment_methods
Copy
Ask AI
curl --request GET \
--url https://api.coinbase.com/api/v3/brokerage/payment_methods
Copy
Ask AI
{
"payment_methods": [
{
"id": "8bfc20d7-f7c6-4422-bf07-8243ca4169fe",
"type": "ACH",
"name": "ALLY BANK ******1234",
"currency": "USD",
"verified": true,
"allow_buy": true,
"allow_sell": true,
"allow_deposit": true,
"allow_withdraw": true,
"created_at": "2021-05-31T09:59:59.000Z",
"updated_at": "2021-05-31T09:59:59.000Z"
}
]
}
Response
200
application/json
A successful response.
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request GET \
--url https://api.coinbase.com/api/v3/brokerage/payment_methods
Copy
Ask AI
{
"payment_methods": [
{
"id": "8bfc20d7-f7c6-4422-bf07-8243ca4169fe",
"type": "ACH",
"name": "ALLY BANK ******1234",
"currency": "USD",
"verified": true,
"allow_buy": true,
"allow_sell": true,
"allow_deposit": true,
"allow_withdraw": true,
"created_at": "2021-05-31T09:59:59.000Z",
"updated_at": "2021-05-31T09:59:59.000Z"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.