getBalance <- function(api_key, api_sign){
url <- "https://api.kraken.com/0/private/Balance"
request <- POST(url, add_headers('API-Key'= api_key, 'API-Sign' = api_sign))
c <- content(request)
return(c)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.