我是错了还是只能从bitstamp API获取最后一分钟或最后一小时的交易? 这就是文档所说的
TRANSACTIONS
GET https://www.bitstamp.net/api/transactions/
Params:
time - time frame for transaction export ("minute" - 1 minute, "hour" - 1 hour). Default: hour.
Returns descending JSON list of transactions. Every transaction (dictionary) contains:
date - unix timestamp date and time
tid - transaction id
price - BTC price
amount - BTC amount
我想有一个完整的交易清单,我必须使用其他数据提供商,例如bitcoin charts
?
答案 0 :(得分:2)
我认为,Bitstamp确实无法获得较旧的交易。
我现在将从http://bitcoincharts.com/获得整个历史......
答案 1 :(得分:1)
我想知道同样的事情,这是Bitstamp的回应。虽然我在添加参数时实际上没有运气得到结果。如果任何人的身体设法让它工作,请告诉如何。感谢。
您可以使用我们的API来接收我们平台上所有交易记录的完整历史记录。
获取https://www.bitstamp.net/api/transactions/
PARAMS:
offset - skip that many transactions before beginning to return results. Default: 0.
limit - limit result to that many transactions. Default: 100.
sort - sorting by date and time (asc - ascending; desc - descending). Default: desc.
返回降序的JSON事务列表。每个交易(字典)都包含:
date - unix timestamp date and time
tid - transaction id
price - BTC price
amount - BTC amount
如果您将排序设置为asc(升序),则默认情况下您将首先收到100个最旧的订单。
然后,您可以使用偏移设置为100来接收下一组100笔交易,您可以继续这样做,直到您收到订单的最新信息。