Appearance
Caching
Some GET requests are cached by default. Cached responses include the HTTP Cache-Control header indicating how long the response can be cached.
Cache-Control Header
Example header:
cache-control: max-age=60,public| Directive | Description |
|---|---|
max-age | The number of seconds the response is considered fresh |
public | The response can be stored by any cache (browser, CDN, proxy) |
Public Routes
| Endpoint | max-age (seconds) |
|---|---|
/marketsummary | 60 |
/:currencypair/marketsummary | 10 |
/currencies | 60 |
/pairs | 60 |
/:currencyPair/orderbook | 30 |
/:currencyPair/orderbook/full | 30 |
/:currencyPair/trades | 30 |
/ordertypes | 60 |
/:currencypair/ordertypes | 60 |
Authenticated Routes
| Endpoint | max-age (seconds) |
|---|---|
/marketdata | 1 |
/fiat/:currency/banks | 600 |
/fiat/:currency/auto-buy | 60 |
/portfolio | 1 |