Do you have an API?: Difference between revisions
Line 89: | Line 89: | ||
* currency: The fiat currency. | * currency: The fiat currency. | ||
* coin: The virtual currency. | * coin: The virtual currency. | ||
If you are a site that needs up to date trade information, please use ''api/v1/trades/ALL/ALL?fromTID=tradeID''. In other words, do not scan through each fiat/coin combination otherwise you will be blocked. | |||
=User Interface= | =User Interface= |
Revision as of 09:12, 8 May 2018
We have a simple API where you can get the current price offered by Bittylicious.
Prices
Quote (number of coins)
https://bittylicious.com/api/v1/quote/COIN/COUNTRY/CURRENCY/PAYMETHOD/AMOUNT/DIRECTION
- COIN: The virtual currency, e.g. BTC
- COUNTRY: The ISO country code, e.g. GB
- CURRENCY: The currency, e.g. GBP
- PAYMETHOD: The payment method, e.g. BANK, PINGIT or CASH
- AMOUNT: The amount of virtual currency, e.g. 1
- DIRECTION: The direction of the purchase, either BUY or SELL
For example, to return the current price of 1 BTC in the UK using GBP via bank transfer, call https://bittylicious.com/api/v1/quote/BTC/GB/GBP/BANK/1
Returns the following:
- totalPrice: The amount of COIN
- coin: The cryptocurrency type
- fixedPortion: The amount of the fiat paid which is fixed (i.e. added to all sales via this offer). totalPrice already includes this portion.
- minAmount: The minimum amount of coins that can be bought/sold
- maxAmount: The maximum amount of coins that can be bought/sold
Quote (amount of fiat)
https://bittylicious.com/api/v1/quoteFiat/COIN/COUNTRY/CURRENCY/PAYMETHOD/AMOUNT/DIRECTION
- COIN: The virtual currency, e.g. BTC
- COUNTRY: The ISO country code, e.g. GB
- CURRENCY: The currency, e.g. GBP
- PAYMETHOD: The payment method, e.g. BANK, PINGIT or CASH
- AMOUNT: The amount of fiat, e.g. 100
- DIRECTION: The direction of the purchase, either BUY or SELL
For example, to return the number of BTC that 100 GBP can buy in the UK via bank transfer, call https://bittylicious.com/api/v1/quoteFiat/BTC/GB/GBP/BANK/100
Returns the following:
- totalPrice: The amount of COIN
- coin: The cryptocurrency type
- fixedPortion: The amount of the fiat paid which is fixed (i.e. added to all sales via this offer). totalPrice already includes this portion.
- minAmount: The minimum amount of fiat that can be bought/sold
- maxAmount: The maximum amount of fiat that can be bought/sold
Ticker for all currency pairs
https://bittylicious.com/api/v1/ticker
This returns an array of currency pairs, e.g. GBPBTC, which in turn provides an array of pricing information. The structure is:
- CurrencyPair, e.g. GBPBTC
- avg_1h: Average price over the last hour
- avg_3h: Average price over the three hours
- avg_6h: Average price over the six hours
- avg_12h: Average price over the twelve hours
- avg_24h: Average price over the twenty four hours
- volume_24h: Volume over the last twenty four hours
- rates:
- last: Last price a sale was made at
Example:
{"GBPBTC":{"avg_1h":"396.999997","avg_3h":"397.001120","avg_6h":"397.003127", "avg_12h":"397.036739","avg_24h":"397.535174","volume_24h":"40.19171396", "rates":{"last":"397.000000"}}, "ZARBTC":"avg_1h":null,"avg_3h":null,"avg_6h":null,"avg_12h":null, "avg_24h":null,"volume_24h":"0.00000000","rates":{"last":null}}}
Trade list for the last day
https://bittylicious.com/api/v1/trades/COIN/CURRENCY
or
https://bittylicious.com/api/v1/trades/COIN/CURRENCY?fromTID=tradeID
- COIN: The virtual currency or ALL for all virtual currencies, e.g. BTC
- CURRENCY: The fiat currency or ALL for all fiat currencies, e.g. GBP
- tradeID: Optionally, the start tid (trade ID) you want to get in the response - useful for filtering out data you've already calculated
The returned list is an array with each entry containing the following values:
- timestamp: Unix timestamp corresponding to the time the trade ended.
- tid: The unique trade identifier.
- fiat: The amount of fiat that was exchanged.
- amount: The amount of virtual currency that was exchanged. This is negative if Bittylicious is buying coins from a user.
- currency: The fiat currency.
- coin: The virtual currency.
If you are a site that needs up to date trade information, please use api/v1/trades/ALL/ALL?fromTID=tradeID. In other words, do not scan through each fiat/coin combination otherwise you will be blocked.
User Interface
https://bittylicious.com/coin/COIN
https://bittylicious.com/coin/COIN/PAYMETHOD
- COIN: Default to use this virtual currency, e.g. BTC
- PAYMETHOD: Default to use this payment method, e.g. BANK, CASH, PINGIT