Author

Topic: Cryptopia Cryptocurrency Platform Services and Development - page 146. (Read 173834 times)

jr. member
Activity: 152
Merit: 4
Bet you won't click the signature link.
--snip--
UPDATE: Cryptopia API has glitches during couple last weeks, your issue can be provoked by experiments of Cryptopia team. I have got today same behavior of GetBalance as you. CancelTrade broken too.

Please let me know when/if it starts working for you again. I am trying a couple times everyday to receive all balances ; still same issue over and over. Only getting  $PAC balance.

Also trying to get their supports attention, but they refuse to test the API and obviously don't know of any maintenance/development going on on the API since they keep saying "refer to our docs".

It's getting frustrating, not having been able to use a simple API call properly for almost 2 weeks now.

Way 2 go cryptopia Sad
jr. member
Activity: 152
Merit: 4
Bet you won't click the signature link.

UPDATE: Cryptopia API has glitches during couple last weeks, your issue can be provoked by experiments of Cryptopia team. I have got today same behavior of GetBalance as you. CancelTrade broken too.

Sorry, but I am glad to not be alone with this issue. I have heard back from cryptopia support three times.

All three times I am told to check their API documentation and that you "just" dont send any parameters to get all balances.

So for the fourth time, I know rejected the "solution" on their support page and await some useful information.

Since you encountered same issue, it's 90% a problem on their end, right??

Lets pressure Cryptopia a bit, so they don't slack around telling people they have no API issues when its a goddamn shit-show making trading bots with their API.
legendary
Activity: 1288
Merit: 1926
฿ear ride on the rainbow slide
Can someone please take care of this ticket, it has been open for over a year.


Thank you,

-Kushed

WOW you deserve a medal for patience dude ! I don't know what the issue was but certainly that length of time means it has slipped through the cracks. Support times have been reduced down to a few days now in most cases a few weeks for more difficult cases.

]
legendary
Activity: 3136
Merit: 3213
Make sure you stay safe from Phishing scams and keep your
account secure by reviewing our FAQ
http://ow.ly/z8MK30k19Gd .

Happy (safe) trading this weekend!
legendary
Activity: 3136
Merit: 3213
Can someone please take care of this ticket, it has been open for over a year.

-Kushed

So the devs and admins know now,
but it may take a few days because the ticket was written with the old ticket system!
It's priority now and probably got stuck with the switch to the new ticket system, sorry for that!
Unfortunately I can not do any more for you at the moment but it is being worked on!
If i have any news i will post it or pm you !

Regards Lafu
legendary
Activity: 3136
Merit: 3213
Can someone please take care of this ticket, it has been open for over a year.



Thank you,

-Kushed

Please pm the ticket number and details for it so i try to get an Admin on it asap ! 

Regards Lafu
legendary
Activity: 1123
Merit: 1000
SaluS - (SLS)
Can someone please take care of this ticket, it has been open for over a year.



Thank you,

-Kushed
legendary
Activity: 3136
Merit: 3213
Any updates regarding The MoneroV new coin? Are we getting the coins?

Read a few posts earlyer please the question is already answerd   !

Regards Lafu
hero member
Activity: 1034
Merit: 558
Any updates regarding The MoneroV new coin?
yep
Its turning out to be scammy shitcoin, so no decent exchange would even consider listing it.  Roll Eyes
newbie
Activity: 28
Merit: 0
So you are able to retrieve all balances? Is your programming language also Python?
...

Yes, I retrieve all balances this way. No, I do not use Python in my practice.
My suggestion was: "Check request that you are trying to send to the server". You should compare string that you try to send to the server and said example of GetBalance http request. I do not know how you build your http requests (or it's headers and payload). Also you can compare your code with Python example in https://www.cryptopia.co.nz/Forum/Thread/262
...
I interpret this as follows: Currency parameter OR CurrencyId parameter is required. Do you disagree?
I agree it may be subtle thing but lets compare GetBalance description and GetDepositAddress description
Quote
GetBalance
...
Input:
Currency: (optional) The currency symbol of the balance to return e.g. 'DOT' (not required if 'CurrencyId' supplied)
CurrencyId: (optional)  The Cryptopia currency identifier of the balance to return e.g. '2' (not required if 'Currency' supplied)

Quote
GetDepositAddress
...
Input:
Currency: The currency symbol of the address to return e.g. 'DOT' (not required if 'CurrencyId' supplied)
CurrencyId: The Cryptopia currency identifier of the address to return e.g. '2' (not required if 'Currency' supplied)

In GetBalance both parameters are "optional", that means you can skip both if you do not want specify any currency.

UPDATE: Cryptopia API has glitches during couple last weeks, your issue can be provoked by experiments of Cryptopia team. I have got today same behavior of GetBalance as you. CancelTrade broken too.
jr. member
Activity: 152
Merit: 4
Bet you won't click the signature link.
Check request that you are trying to send to the server. If you want get all balances you should send POST request without parameters in JSON part. BUT JSON PART MUST BE PRESENTED. I mean If you want get your BTC balance it should be : {Currency: "BTC"}, if you want get all balances it should be : {}. I'm almost sure you got Bad Request response because of missed JSON part.

-snipped-

And "look at the documentation" pretty right advice. Do not neglect it.

So you are able to retrieve all balances? Is your programming language also Python?

I really, really thought that you just gave me the solution, since i actually did remove post parameters entirely in my own 'tweaking' attempts, instead of passing an empty dictionary as the post parameters.

However, i just tested your suggestion and it yielded same result as passing an empty string as the parameter. I received the balance of $PAC, and only $PAC balance.

I do have both BTC and ETH in my balance currently, so its not the case that there is no balances to fetch.

Also, the documentation on the getbalance call is as follows, regarding the parameters:
Code:
Currency: (optional) The currency symbol of the balance to return e.g. 'DOT' (not required if 'CurrencyId' supplied)
CurrencyId: (optional)  The Cryptopia currency identifier of the balance to return e.g. '2' (not required if 'Currency' supplied)

I interpret this as follows: Currency parameter OR CurrencyId parameter is required. Do you disagree?
newbie
Activity: 31
Merit: 0
Lots of pumps always happens on Cryptopia. Better then polo and btrex.
newbie
Activity: 28
Merit: 0
Hey cryptopians and officials!

I was wondering if anyone can tell me how i get all my balances with API, and not just a single balance.

Currently I am using this implementation of the API and it only has this method
Code:
get_balance(coin)

I contacted support about it, and got a very generic "look at the documentation" response. Which i have.. Now, waiting for the follow-up reply of my slightly more aggressive update, i thought i'd consult here.

I have tried modifying the implementation to not take the coin parameter (formally known as 'Currency' parameter in post request to cryptopia server) so that it doesn't take any specific coin parameter and sends it along as the 'Currency' but rather leaves out the post parameter entirely. This results in a Bad Request response.

I have tried passing 'None' as the coin parameter, and also tried passing an empty string as 'Currency' parameter. Both of which acts somewhat weird, in that they return the balances only for $PAC currency. I assume because it's the first currency alphabetically.

Anyone know how to do it, or have suggestions to what i could try ; it would be greatly appreciated.

Check request that you are trying to send to the server. If you want get all balances you should send POST request without parameters in JSON part. BUT JSON PART MUST BE PRESENTED. I mean If you want get your BTC balance it should be : {Currency: "BTC"}, if you want get all balances it should be : {}. I'm almost sure you got Bad Request response because of missed JSON part.

Whole HTTP request should look like this:
--------start--------------
POST https://www.cryptopia.co.nz/api/getbalance HTTP/1.1
Host: www.cryptopia.co.nz
Content-Type: application/json
Content-Length: 2
Accept: */*
Authorization: amx
Connection: close

{}
--------end--------------

And "look at the documentation" pretty right advice. Do not neglect it.
legendary
Activity: 3136
Merit: 3213
Hello

I'm MedaR from ZenCash Team.

I have information from couple of members, that for more than 10 days ZenCash wallet is on maintenance.
Please tell me what is going on and when we can expect this to be solved?

Thanks!

https://www.youtube.com/watch?v=IrxdY3XAu5g

Good afternoon.
Who knows when cryptopia.co.nz unlocks wallets?
What is the problem?

Coininfo says  Wallet Status:

4th May - Investigating withdrawal issues.

But i asking one of the wallet team if they have an update maybe and let you know asap !

Regards Lafu
legendary
Activity: 2380
Merit: 1026
Hello

I'm MedaR from ZenCash Team.

I have information from couple of members, that for more than 10 days ZenCash wallet is on maintenance.
Please tell me what is going on and when we can expect this to be solved?

Thanks!

https://www.youtube.com/watch?v=IrxdY3XAu5g

Good afternoon.
Who knows when cryptopia.co.nz unlocks wallets?
What is the problem?
jr. member
Activity: 152
Merit: 4
Bet you won't click the signature link.
Hey cryptopians and officials!

I was wondering if anyone can tell me how i get all my balances with API, and not just a single balance.

Currently I am using this implementation of the API and it only has this method
Code:
get_balance(coin)

I contacted support about it, and got a very generic "look at the documentation" response. Which i have.. Now, waiting for the follow-up reply of my slightly more aggressive update, i thought i'd consult here.

I have tried modifying the implementation to not take the coin parameter (formally known as 'Currency' parameter in post request to cryptopia server) so that it doesn't take any specific coin parameter and sends it along as the 'Currency' but rather leaves out the post parameter entirely. This results in a Bad Request response.

I have tried passing 'None' as the coin parameter, and also tried passing an empty string as 'Currency' parameter. Both of which acts somewhat weird, in that they return the balances only for $PAC currency. I assume because it's the first currency alphabetically.

Anyone know how to do it, or have suggestions to what i could try ; it would be greatly appreciated.
legendary
Activity: 3136
Merit: 3213
What about MoneroV? Are we getting our coins?

Look a few posts earlyer please  !


Regards  Lafu
legendary
Activity: 1288
Merit: 1926
฿ear ride on the rainbow slide
Any new about MoneroV? Are you going to credit it in the future?

Yet another MoneroV shill asking exactly the same question. Noobie account to shill yet another useless fork intended as a money grab.

https://bitcointalksearch.org/user/cryptoc12-1975349
https://bitcointalksearch.org/user/danielco9-1653730
https://bitcointalksearch.org/user/gdog3-1750519
https://bitcointalksearch.org/user/btcgenius-1750497
https://bitcointalksearch.org/user/alibg-1738359
https://bitcointalksearch.org/user/cavali7-1704255
https://bitcointalksearch.org/user/dzomi-1750535

If you plan to participate in this fork by WITHDRAWING MONERO TO YOUR OWN PRIVATE WALLET PRIOR TO THE FORK - make sure you are VERY CAREFUL.

Bitcoin gold endorsed a wallet that resulted in 3.3 million in real BTC being stolen.
https://news.bitcoin.com/bitcoin-gold-wallet-stole-private-keys-scooped-3-3-million/

Coinsecure exchange also lost around 3 Million that could be related to the fork.
"The note also elucidates that this loss is not a direct result of their infrastructure being compromised or hacked but instead it was due to their CSO Dr. Amitabh Saxsena extracting Bitcoin Gold from Bitcoin. And as a result, their CSO claimed that bitcoins were lost."
https://coinsutra.com/coinsecure-bitcoin-hack-theft/


You risk losing your real Monero for the opportunity to get a copy.

newbie
Activity: 13
Merit: 0
Any new about MoneroV? Are you going to credit it in the future?
hero member
Activity: 2730
Merit: 552


I still am not able to open a new support ticket.  This has gone on for about two weeks now. 

I have written a pm to you !!

Regards Lafu

It just worked.  I remember you saying to logout and log in again before but I thought I did because I often have to log in.
I guess it's actually hitting log out since I'm on two computers here trading.
Jump to: