diff --git a/docs/source/Getting-Started.rst b/docs/source/Getting-Started.rst index 549f2d50..1bd896da 100644 --- a/docs/source/Getting-Started.rst +++ b/docs/source/Getting-Started.rst @@ -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 `. .. code-block:: python