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

Your Services

Manage your API listings on AgenticTrade.

{% if services %} {% for svc in services %}

{{ svc.name }}

{{ svc.endpoint }}

{{ svc.status }}
Price: ${{ "%.4f"|format(svc.price_per_call) }}/call
Calls: {{ "{:,}".format(svc.call_count) }}
Revenue: ${{ "%.2f"|format(svc.revenue) }}
Listed: {{ svc.created_at[:10] }}
{% endfor %} {% else %}

No services yet

Register your first API to start earning from AI agents.

Read API Documentation
{% endif %} {% endblock %}