Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion docs/source/Getting-Started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,12 @@ For paginated endpoints call :code:`list_*` and use the provided iterator:
trades.append(t)
print(trades)

For endpoints that have a set of parameters you can use the provided enums:
.. note::
The number of network requests made by the iterator depends on the value of the parameter :code:`limit`.
:code:`limit` specifies how many results should be returned per network request.
You can see each network request by passing :code:`verbose = True` to the client.

For endpoints that have a set of parameters you can use the provided :doc:`enums </Enums>`.

.. code-block:: python

Expand Down