{% extends "base.html" %} {% block title %}Pricing Plans{% endblock %} {% block content %}

Pricing Plans

{% if success %}
{{ success }}
{% endif %} {% if error %}
{{ error }}
{% endif %}

Choose Your Plan

Select the perfect tier for your AI service needs. All plans include access to all providers, rotations, and autoselection features.

{% if wallet_balance is not none %}
Wallet balance: {{ currency_symbol }}{{ "%.2f"|format(wallet_balance) }} Top Up
{% endif %}
{% set paid_tiers = tiers | selectattr('is_default', 'equalto', False) | list %}
{% for tier in paid_tiers %} {% endfor %}

Free Tier

Free Forever

Perfect for testing and personal use

{% if not current_tier or current_tier.is_default %} {% else %} {% endif %}
{% if enabled_gateways|length > 0 %}

Secure Payment Methods

{% for gateway in enabled_gateways %}
{% if gateway == 'paypal' %}
PayPal
{% elif gateway == 'stripe' %}
Stripe
{% elif gateway == 'bitcoin' %}
Bitcoin
{% elif gateway == 'ethereum' or gateway == 'eth' %}
ETH
{% elif gateway == 'usdt' %}
USDT
{% elif gateway == 'usdc' %}
USDC
{% endif %}
{% endfor %}

All transactions are secure and encrypted

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