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 f5d9974 commit 28d9ccfCopy full SHA for 28d9ccf
docs/source/Getting-Started.rst
@@ -40,7 +40,12 @@ For paginated endpoints call :code:`list_*` and use the provided iterator:
40
trades.append(t)
41
print(trades)
42
43
-For endpoints that have a set of parameters you can use the provided enums:
+.. note::
44
+ The number of network requests made by the iterator depends on the value of the parameter :code:`limit`.
45
+ :code:`limit` specifies how many results should be returned per network request.
46
+ You can see each network request by passing :code:`verbose = True` to the client.
47
+
48
+For endpoints that have a set of parameters you can use the provided :doc:`enums </Enums>`.
49
50
.. code-block:: python
51
0 commit comments