Transfers
Get all payment methods
REST API
- Introduction
- Requests
- Authentication
- Rate Limits
- Pagination
- Profiles
- Types
- Accounts
- Address Book
- Coinbase Accounts
- Conversions
- Currencies
- Fees
- Futures
- Loan
- Orders
- Products
- Profiles
- Reports
- Transfers
- POSTDeposit from Coinbase account
- POSTDeposit from payment method
- GETGet a single transfer
- GETGet all payment methods
- GETGet all transfers
- GETGet fee estimate for crypto withdrawal
- POSTSubmit travel information for a transfer
- POSTWithdraw to Coinbase account
- POSTWithdraw to crypto address
- POSTWithdraw to payment method
- POST
- Travel Rules
- Users
- Wrapped Assets
FIX API
Transfers
Get all payment methods
Gets a list of the user’s linked payment methods.
GET
/
payment-methods
Copy
Ask AI
curl --request GET \
--url https://api.exchange.coinbase.com/payment-methods \
--header 'cb-access-key: <api-key>' \
--header 'cb-access-passphrase: <api-key>' \
--header 'cb-access-sign: <api-key>' \
--header 'cb-access-timestamp: <api-key>'
Copy
Ask AI
[
{
"id": "cbdd9f28-34e7-5152-b1dc-d657bf8df858",
"type": "fiat_account",
"name": "Cash (USD)",
"currency": "USD",
"primary_buy": true,
"primary_sell": true,
"instant_buy": true,
"instant_sell": true,
"created_at": "2019-06-04T21:24:32.000Z",
"updated_at": "2019-06-04T21:24:32.000Z",
"resource": "payment_method",
"resource_path": "/v2/payment-methods/cbdd9f28-34e7-5152-b1dc-d657bf8df858",
"limits": {
"type": "fiat_account",
"name": "Coinbase Account"
},
"allow_buy": true,
"allow_sell": true,
"allow_deposit": false,
"allow_withdraw": false,
"fiat_account": {
"id": "2b760113-fbba-5600-ac74-36482c130768",
"resource": "account",
"resource_path": "/v2/accounts/2b760113-fbba-5600-ac74-36482c130768"
},
"verified": true,
"picker_data": {
"symbol": "fiat_account",
"balance": {
"amount": "1.00",
"currency": "USD"
}
},
"hold_business_days": 0,
"hold_days": 0
}
]
Authorizations
Response
200
application/json
The response is of type from https://github.cbhq.net/engineering/coinbase/blob/master/app/presenters/api/v2/payment_method_presenter.rb · object[]
.
Was this page helpful?
Copy
Ask AI
curl --request GET \
--url https://api.exchange.coinbase.com/payment-methods \
--header 'cb-access-key: <api-key>' \
--header 'cb-access-passphrase: <api-key>' \
--header 'cb-access-sign: <api-key>' \
--header 'cb-access-timestamp: <api-key>'
Copy
Ask AI
[
{
"id": "cbdd9f28-34e7-5152-b1dc-d657bf8df858",
"type": "fiat_account",
"name": "Cash (USD)",
"currency": "USD",
"primary_buy": true,
"primary_sell": true,
"instant_buy": true,
"instant_sell": true,
"created_at": "2019-06-04T21:24:32.000Z",
"updated_at": "2019-06-04T21:24:32.000Z",
"resource": "payment_method",
"resource_path": "/v2/payment-methods/cbdd9f28-34e7-5152-b1dc-d657bf8df858",
"limits": {
"type": "fiat_account",
"name": "Coinbase Account"
},
"allow_buy": true,
"allow_sell": true,
"allow_deposit": false,
"allow_withdraw": false,
"fiat_account": {
"id": "2b760113-fbba-5600-ac74-36482c130768",
"resource": "account",
"resource_path": "/v2/accounts/2b760113-fbba-5600-ac74-36482c130768"
},
"verified": true,
"picker_data": {
"symbol": "fiat_account",
"balance": {
"amount": "1.00",
"currency": "USD"
}
},
"hold_business_days": 0,
"hold_days": 0
}
]
Assistant
Responses are generated using AI and may contain mistakes.