List known currencies. Returns: list: List of currencies. Example:: [{ "id": "BTC", "name": "Bitcoin", "min_size": "0.00000001" }, { "id": "USD", "
(self)
| 220 | '/products/{}/stats'.format(product_id)) |
| 221 | |
| 222 | def get_currencies(self): |
| 223 | """List known currencies. |
| 224 | |
| 225 | Returns: |
| 226 | list: List of currencies. Example:: |
| 227 | [{ |
| 228 | "id": "BTC", |
| 229 | "name": "Bitcoin", |
| 230 | "min_size": "0.00000001" |
| 231 | }, { |
| 232 | "id": "USD", |
| 233 | "name": "United States Dollar", |
| 234 | "min_size": "0.01000000" |
| 235 | }] |
| 236 | |
| 237 | """ |
| 238 | return self._send_message('get', '/currencies') |
| 239 | |
| 240 | def get_time(self): |
| 241 | """Get the API server time. |