Interest Rates Endpoints

class quoine.client.Quoinex(api_token_id, api_secret, vendor_id=None, language=None)[source]
get_interest_rate_ladder(currency)

Get a list of executions after a particular time (Executions are sorted in ASCENDING order)

https://developers.quoine.com/#interest-rates

Parameters:currency (string) – required (i.e. USD)
ladder = client.get_interest_rate_ladder(currency='USD')
Returns:API response
{
    "bids": [
        [
            "0.00020",
            "23617.81698"
        ],
        [
            "0.00040",
            "50050.42000"
        ],
        [
            "0.00050",
            "100000.00000"
        ]
    ],
    "asks": [
    ]
}
Raises:QuoineResponseException, QuoineAPIException