{% extends "base.html" %} {% from 'macros.html' import render_pagination %} {% block body %}

{{ _('API Doc') }}

To fetch a whole blacklist, simply run:

curl {{url_for('api_index.get_blacklist', _external=True)}}

Try it!

Or if you like paged result:

curl {{url_for('api_index.get_blacklist', _external=True, per_page=10, page=2)}}

Try it!

Basic filtering:

curl {{url_for('api_index.get_blacklist', _external=True, bank_account='CZ')}}

Allowed arguments are:

Try it!

{% endblock %}