blockchain / lib-exchange-client

144 stars 123 forks source link

500 internal error #38

Open GGenetta opened 2 years ago

GGenetta commented 2 years ago

Hi all,

I try to send a stop limit buy order over the api. The order arrives in the exchange, but then it gives an internal server error 500 msg. When I try on the swagger page,I also receive a internal server error is this a know issue?

thanks, G

Anny85-code commented 8 months ago

I am trying to get data and I am getting internal server error 500, what could be the issue? is anyone else experiencing this?

nonentityzero commented 3 months ago

Hi! I am also having this issue. When trying to get orders information using the sample code (and a working API key), I keep getting the same issue: 500 Internal server error. This is my current code with API key edited out: import requests headers = { 'Accept': 'application/json', 'X-API-Token': '[EDITED OUT]' }

r = requests.get('https://api.blockchain.com/v3/exchange/orders', headers = headers)

print(r.json()). I don't think that anything is wrong with the code itself as I am directly referencing the sample code. Is there anyone else having this issue, or anyone who has been able to resolve this?