gemini_api_call {cryptotrackr}R Documentation

gemini_api_call

Description

gemini_api_call

Usage

gemini_api_call(key, secret, path, method, timeout_seconds = 60)

Arguments

key

your API key for Gemini

secret

your secret key for Gemini

path

your API endpoint

method

"GET" or "POST"

timeout_seconds

seconds until the query times out. Default is 60.

Value

returns data from your Gemini API call

Examples

## Not run: 
key <- "..."
secret <- "..."
path <- "/v1/mytrades"
method <- "POST"
data <- gemini_api_call(key, secret, path, method)
## End(Not run)

[Package cryptotrackr version 1.3.3 Index]