Learn R Programming

cryptotrackr (version 1.3.3)

coinlist_api_call: coinlist_api_call

Description

coinlist_api_call

Usage

coinlist_api_call(
  api_key,
  api_secret,
  method,
  path,
  body,
  timeout_seconds = 60
)

Value

returns the response from your Coinlist API call

Arguments

api_key

your Coinlist API key

api_secret

your Coinlist API secret

method

"GET" or "POST"

path

the path of your API call

body

the body of your API call

timeout_seconds

seconds until the query times out. Default is 60.

Examples

Run this code
if (FALSE) {
path <- "/v1/accounts"
method <- "GET"
api_key <- "..."
api_secret <- "..."
body <- ""
data <- coinlist_api_call(api_key, api_secret, method, path, body)}

Run the code above in your browser using DataLab