Anyone else seeing sometimes weird and wrong numbers on Bitfinex' REST API?
Specifically this is about
https://api.bitfinex.com/v1/pubticker/btcusdNow that the price is currently hovering on low volume around 7110 that API endpoint sometimes returns the correct price value, sometimes a value between 120~150$ above the real price.
Correct:
{
"mid": "7118.15",
"bid": "7116.8",
"ask": "7119.5",
"last_price": "7116.8",
"low": "6930.1",
"high": "7348.4",
"volume": "50659.55555046",
"timestamp": "1509794526.055699"
}
{
"mid": "7112.55",
"bid": "7111.7",
"ask": "7113.4",
"last_price": "7113.7",
"low": "6930.1",
"high": "7348.4",
"volume": "50559.01356782",
"timestamp": "1509794600.6583316"
}
Not so right:
{
"mid": "7247.25",
"bid": "7247.2",
"ask": "7247.3",
"last_price": "7247.2",
"low": "6820.0",
"high": "7448.0",
"volume": "63495.49522234",
"timestamp": "1509794571.6418443"
}
{
"mid": "7241.95",
"bid": "7241.9",
"ask": "7242.0",
"last_price": "7241.9",
"low": "6820.0",
"high": "7448.0",
"volume": "63507.08039514",
"timestamp": "1509794579.0906284"
}
{
"mid": "7260.05",
"bid": "7259.4",
"ask": "7260.7",
"last_price": "7260.6",
"low": "6820.0",
"high": "7448.0",
"volume": "63486.30370678",
"timestamp": "1509794588.0283325"
}
Please note the returned timestamp values, all these have been returned within a timespan of about a minute and the price has been nowhere near 7250. Any clue what's going on there?
Edit: Seems fixed now that the price is again above the wrong value.