coinbase_accounts {cryptotrackr} | R Documentation |
coinbase_accounts
Description
coinbase_accounts
Usage
coinbase_accounts(
api_key,
api_secret,
limit = NULL,
cursor = NULL,
timeout_seconds = 60
)
Arguments
api_key |
your Coinbase API key |
api_secret |
your Coinbase API secret |
limit |
the maximum number of results to return. The maximum limit is 250 while the default value is 49. |
cursor |
Cursor used for pagination. When provided, the response returns responses after this cursor. |
timeout_seconds |
seconds until the query times out. Default is 60. |
Value
returns a list with a dataframe with information about your Coinbase accounts along with your cursor for use in pagination.
Examples
## Not run:
api_key <- "..."
api_secret <- "..."
accounts <- coinbase_accounts(api_key, api_secret)
## End(Not run)
[Package cryptotrackr version 1.3.3 Index]