GET
/
api
/
v3
/
brokerage
/
payment_methods
/
{payment_method_id}
Get Payment Method
curl --request GET \
  --url https://api.coinbase.com/api/v3/brokerage/payment_methods/{payment_method_id} \
  --header 'Authorization: Bearer <token>'
{
  "payment_method": {
    "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"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

payment_method_id
string
required

The ID of the payment method. Refer to List Payment Methods for the list of all available payment methods and their corresponding IDs.

Response

200
application/json

A successful response.

The response is of type object.