{% extends 'dashboard/base.html' %} {% load humanize %} {% block title %}API Explorer - Peza API{% endblock %} {% block breadcrumb %}API Explorer{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

API Explorer

Browse and discover available APIs

{{ total_apis }} APIs available
Category:
{% if all_tags %}
Filter by tags:
{% for tag in all_tags %} {% endfor %}
{% endif %}
{% for api in api_services %}
{% if api.deprecated %} Deprecated {% endif %}

{{ api.display_name|default:api.name }}

{% if api.provider %}

by {{ api.provider }}

{% endif %}
{{ api.get_category_display }}

{{ api.description }}

{% if api.features %}

Features

{% with features=api.features|slice:":3" %} {% for feature in features %} {{ feature }} {% endfor %} {% if api.features|length > 3 %} +{{ api.features|length|add:"-3" }} {% endif %} {% endwith %}
{% endif %}
{% if api.average_latency_ms %} {{ api.average_latency_ms }}ms {% else %} — {% endif %}
Latency
{% if api.uptime_percentage %} {{ api.uptime_percentage }}% {% else %} — {% endif %}
Uptime
{% if api.is_active %}Active{% else %}Inactive{% endif %}
Status
{% if api.tags %}
{% with tags=api.tags|slice:":3" %} {% for tag in tags %} {{ tag }} {% endfor %} {% endwith %}
{% endif %}
{% endfor %} {% for api in infra_api_cards %}
Playground

{{ api.display_name }}

by {{ api.provider }}

{{ api.category_display }}

{{ api.description }}

{% if api.features %}

Features

{% with features=api.features|slice:":3" %} {% for feature in features %} {{ feature }} {% endfor %} {% if api.features|length > 3 %} +{{ api.features|length|add:"-3" }} {% endif %} {% endwith %}
{% endif %}
{{ api.method }}
Method
Core
Provider
Active
Status
{% with tags=api.tags|slice:":3" %} {% for tag in tags %} {{ tag }} {% endfor %} {% endwith %} {{ api.endpoint }}
{% endfor %} {% if total_apis == 0 %}

No APIs available

Check back later for new API services.

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}