-
Notifications
You must be signed in to change notification settings - Fork 31
Closed
Labels
Description
هدف
دریافت لیست سفارشها یا همان اردربوک
محیط درخواست
- ابزار درخواست (مرورگر/ابزار/برنامه/...)
- زبان برنامه (cURL/Python/PHP/...)
- محل درخواست (local/VPS/...)
- درخواست IP (داخلی/خارجی)
- ...
Python
نحوه درخواست
import requests
url = "https://api.nobitex.ir/v2/orderbook"
symbol = "BTCIRT"
response = requests.get(f"{url}/{symbol}", timeout=100)
data = response.json()
print(data)
پاسخ دریافتی
HTTPSConnectionPool(host='api.nobitex.ir', port=443): Max retries exceeded with url: /v2/orderbook/BTCIRT (Caused by ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x7d42f41a1450>, 'Connection to api.nobitex.ir timed out. (connect timeout=100)'))
اطلاعات تکمیلی
No response