We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 307c856 commit eee5d22Copy full SHA for eee5d22
README.md
@@ -45,17 +45,17 @@ account_balance = api.accounts.get_account_balance()
45
print(account_balance)
46
```
47
48
-### Markets
+### Market
49
50
-The Markets client allows you to interact with market-related endpoints.
+The Market client allows you to interact with market-related endpoints.
51
52
```python
53
# Get market depth
54
-market_depth = api.markets.get_depth("ADAUSDX")
+market_depth = api.market.get_depth("ADAUSDX")
55
print(market_depth_response)
56
57
# Get market price
58
-market_price_response = api.markets.get_market_price("ADAUSDX")
+market_price_response = api.market.get_market_price("ADAUSDX")
59
print(market_price_response)
60
61
0 commit comments