Questions tagged [crypto.com-exchange-api]
7 questions
1
vote
1 answer
Invalid_Nonce authenticating on Crypto.com Google Script
For private endpoints of Crypto.com, I am getting the error:
{ id: xx,
method: 'private/get-order-detail',
code: 10007,
message: 'INVALID_NONCE' }
for the following code:
function getOrderStatus() {
var nonce = Math.floor(new…

utphx
- 1,287
- 1
- 8
- 19
1
vote
1 answer
Crypto.com API : Create Order
Crypto.com API is not very friendly.
Took forever to get account balance authorized.
Using same technique, same encoding I cannot get the order created.
Always get unauthorized.
apiKey = "#cr_key#";
apiSecret = "#cr_s#";
hmacm =…

Merle_the_Pearl
- 1,391
- 3
- 18
- 25
1
vote
1 answer
www.crypto.com authenticating, python HMAC-SHA256
Trying to authenticate to crypto.com but cant seem to get it to work... Been trying few days now and getting really frustrated, any help? Their api docs @ https://exchange-docs.crypto.com/?python#digital-signature
Heres how to do it + sample code,…

Pandasto
- 19
- 2
0
votes
0 answers
Crypto.com API - Create Order
Anyone have thoughts on Crypto.com API for create order.
I am having no luck. I can only get unauthorized.
I cannot seem to find good code sample of what the final hmac string should be.

Merle_the_Pearl
- 1,391
- 3
- 18
- 25
0
votes
1 answer
Unable to authenticate on Crypto.com API C# REST API
Crypto.com offers an API where supposedly you could access their exchange platform. However, their documentation is extremely poor and inaccurate in terms of C# examples. I am unable to authenticate my REST calls using C#.
For all the private…

Coz
- 558
- 7
- 15
-1
votes
1 answer
API Error UNAUTHORIZED on Crypto.com exchange
When i use api method private/create-withdrawal on crypto.com exchange i get error: "code":10002,"message":"UNAUTHORIZED".
I am using this request with axios:
url: 'https://api.crypto.com/v2/private/create-withdrawal',
method: 'post',
headers: {…

dimazx
- 11
- 3
-1
votes
1 answer
How to find and use certain result from requests.post json response?
I am new to python, but self learnt myself to create crypto.com trading bot and got it to work. I have never coded before so this was really interesting experience :)
However, one problem I ran into was how to find certain string from requests.post…

Pandasto
- 19
- 2