GET
/
api
/
v3
/
brokerage
/
payment_methods
/
{payment_method_id}
curl --request GET \
  --url https://api.coinbase.com/api/v3/brokerage/payment_methods/{payment_method_id}
{
  "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"
  }
}

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.