GET
/
accounts
/
{account_id}
/
holds
curl --request GET \
  --url https://api.exchange.coinbase.com/accounts/{account_id}/holds \
  --header 'cb-access-key: <api-key>' \
  --header 'cb-access-passphrase: <api-key>' \
  --header 'cb-access-sign: <api-key>' \
  --header 'cb-access-timestamp: <api-key>'
[
  {
    "created_at": "2020-03-11T20:48:46.622Z",
    "id": "c5cdd687-2d03-4a87-8dd7-c693a4bb766f",
    "amount": "10.0500000000000000",
    "type": "order",
    "ref": "a9625b04-fc66-4999-a876-543c3684d702"
  }
]

Pagination

This request is paginated. See Pagination for more information.

Authorizations

cb-access-key
string
header
required
cb-access-passphrase
string
header
required
cb-access-sign
string
header
required
cb-access-timestamp
string
header
required

Path Parameters

account_id
string
required

Query Parameters

before
string

Used for pagination. Sets start cursor to before date.

after
string

Used for pagination. Sets end cursor to after date.

limit
integer
default:100

Limit on number of results to return.

Response

200
application/json

The response is of type object[].