{% extends "base.html" %} {% load staticfiles compress %} {% block title %}Pricing - It's Free! - healthchecks.io{% endblock %} {% block content %}
{% if messages %}

We're sorry! There was a problem setting up the subscription. Response from payment gateway:

{% for message in messages %}

{{ message }}

{% endfor %}
{% endif %} {% if sub.is_active %}

{% if first_charge %} You just paid ${{ sub.price }} {% else %} You are currently paying ${{ sub.price }}/month {% endif %} {% if sub.pm_is_credit_card %} using {{ sub.card_type }} card ending with {{ sub.last_4 }}. {% endif %} {% if sub.pm_is_paypal %} using PayPal account {{ sub.paypal_email }}. {% endif %}

Next billing date will be {{ sub.next_billing_date }}. Thank you for supporting healthchecks.io!

{% csrf_token %}
{% endif %}

Free Plan

$0 / Month

  • Personal or Commercial use
  • Unlimited Checks
  • Unlimited Alerts
  •  

Pay What You Want Plan

{% if sub.is_active %} ${{ sub.price }} / Month {% else %} $10 / Month {% endif %}

  • Personal or Commercial use
  • Unlimited Checks
  • Unlimited Alerts
  • Priority Support

The Free plan and the Pay-What-You-Want plan look almost the same. What's up with that?

healtchecks.io is a free service. You can use it as much as you want (in good faith, without abusing it), and you should not feel obliged to pay anything. However, if you find the service useful and important to you, you do have the option to switch to the Paid plan. The Paid plan is effectively a monthly donation to guarantee project's continued existence and future improvements.

If I cancel my paid plan, do I get a refund?

No, you don't.

{% endblock %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock %}