{% extends "portal/base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}

Welcome back, {{ provider.display_name }}

Here's your API business overview.

{# ── Stats Grid ── #}
{{ stats.service_count }}
Active Services
{{ "{:,}".format(stats.total_calls) }}
Total API Calls
${{ "%.2f"|format(stats.total_revenue) }}
Total Revenue
${{ "%.2f"|format(stats.pending_settlement) }}
Pending Settlement
{# ── Quick Actions ── #}

Quick Actions

Manage Services View Analytics API Docs
{# ── Services Overview ── #}

Your Services

{% if stats.services %}
{% for svc in stats.services %} {% endfor %}
Name Price/Call Calls Revenue Status
{{ svc.name }} ${{ "%.4f"|format(svc.price_per_call) }} {{ "{:,}".format(svc.call_count) }} ${{ "%.2f"|format(svc.revenue) }} {{ svc.status }}
{% else %}

No services listed yet

Use the API to register your first service, or check the API documentation.

{% endif %}
{# ── Getting Started ── #} {% if stats.service_count == 0 %}

Getting Started

  1. Prepare your API endpoint (must be publicly accessible)
  2. Register it via POST /api/v1/services with your API key
  3. AI agents worldwide discover and call your API automatically
  4. Track revenue and settlements here in your dashboard
{% endif %} {% endblock %}