I see there was a notification about the API on Cryptsy tweets at the bottom of the home page
Yes, NEW Api like : makewithdrawal or getwalletstatus.
The problem with CAT is a CHANGE of the JSON Format return of getinfo Call.
getInfo call isn't change if you read the API Page :
https://www.cryptsy.com/pages/apiMethod: getinfo
Inputs: n/a
Outputs:
balances_available Array of currencies and the balances availalbe for each
balances_hold Array of currencies and the amounts currently on hold for open ordersservertimestamp Current server timestamp
servertimezone Current timezone for the server
serverdatetime Current date/time on the server
openordercount Count of open orders on your account
But in the balances_available and balances_hold there's a Format Change :
- Original return was a group of CoinName (Datatype String) + Balance (Datatype String)
- Today is always a group of CoinName + Balance but :
- CoinName (Datatype String) + Balance (Datatype String) if Balance > 0
- CoinName (Datatype String) + Balance (Datatype integer) if Balance = 0
My JSON Library (there aren't more json library, so i use one of the "De Facto" standard library) give me this result. Maybe from Cryptsy side there's no change (they think that change a return from 0.00000000 to 0 is the same)
BUT :
Tonight i have write the FIX
Tonight i have run a Test (is running fine until no2)
FIX Is Ready
FIX is in the 1.0 Version, SO ALL CAT VERSIONS are Broken, All user must upgrade to 1.0
I'm preparing PM To all CAT Users.
This is a UNOFFICIAL RELEASE of 1.0 Version but, in other word, the version you will get is the official 1.0
I'm Very Tired