It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
# All timestamps are in UTC
# All currency amounts and exchange rates are multiplied by 10^8 to get rid of floating point numbers
# Available currencies
URL: https://coinex.pw/api/v2/currencies
Description:
{
"id": 28 # ID for reference
, "name": "BTC" # Short name
, "desc": "Bitcoin" # Full name
, "tx_fee": 0.0001 # Withdrawal fee
, "tx_conf": 3 # Confirmations for deposits
, "hashrate": 186287759 # Pool hashrate
, "net_hashrate": null # Network hashrate (if available)
, "last_block_at": null # Timestamp for last block found by pool
, "mining_enabled": true # True if there is a pool for the currency
, "mining_url": "stratum+tcp://stratum.coinex.pw:9029" # Stratum URL for mining pool
, "mining_fee": 2 # Mining pool fee, percent
, "donations": "194nULbp8UAvtCX21fpS91Bhq7iHt2DBAD" # Donations address
, "algo": "sha256" # PoW algorithm (sha256 / scrypt)
, "diff": 1418481395.26264 # Mining difficulty
, "updated_at": "2014-01-11T20:57:37.262Z" # Timestamp for last data update
}
# Available trading pairs
URL: https://coinex.pw/api/v2/trade_pairs
Description:
{
"id": 28 # ID for reference
, "buy_fee": 0.2 # Fee for bid orders
, "sell_fee": 0.2 # Fee for ask orders
, "last_price": 2990000 # Exchange rate of the last trade
, "currency_id": 33 # Currency ID (see above)
, "market_id": 28 # Market currency ID (see above)
, "url_slug": "ltc_btc" # URL slug for reference (https://coinex.pw/trade/)
, "rate_min": 2860050 # Minimal exchange rate within last 24 hours
, "rate_max": 3080000 # Maximal exchange rate within last 24 hours
, "currency_volume": 9403824973 # Currency trading volume within last 24 hours
, "market_volume": 279895654 # Market trading volume within last 24 hours
, "updated_at": "2014-01-11T20:57:37.262Z" # Timestamp for last data update
}
# Open orders
URL: https://coinex.pw/api/v2/orders?tradePair=
Description:
{
"id": 208451 # ID for reference
, "trade_pair_id": 21 # ID of trading pair
, "amount": 1000000000 # Amount of currency to be bought / sold
, "filled": 0 # Amount of currency already bought / sold
, "bid": false # Defines if order is bid or ask
, "rate": 300 # Order exchange rate
, "created_at": "2014-01-07T21:53:42.794Z" # Timestamp for order creation
, "updated_at": "2014-01-07T21:53:42.794Z" # Timestamp for last data update
}
# Last trades on market
URL: https://coinex.pw/api/v2/trades?tradePair=
Description:
{
"id": 137847 # ID for reference
, "created_at": "2014-01-11T09:43:32.489Z" # Timestamp when trade happened
, "bid": false # Defines if last matching order was bid or ask
, "rate": 226 # Exchange rate
, "amount": 98310852 # Currency amount
, "trade_pair_id": 21 # ID of trading pair
}