Do you have an API?

From Bittylicious
Revision as of 09:19, 13 March 2014 by Cocodude (talk | contribs)
Jump to navigation Jump to search

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

  • 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

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

Quote (amount of fiat)

https://bittylicious.com/api/v1/quoteFiat/COIN/COUNTRY/CURRENCY/PAYMETHOD/AMOUNT

  • 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

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

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}}}

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