Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/RespondeIA-APP/front/llms.txt

Use this file to discover all available pages before exploring further.

Overview

RespondeIA offers flexible pricing plans designed for businesses of all sizes, from startups to agencies. Choose between monthly and annual billing with a 20% discount on annual subscriptions.
Free Trial AvailableAll plans include a 7-day free trial with:
  • No credit card required
  • Full access to plan features
  • Cancel anytime without charges

Available Plans

RespondeIA offers three pricing tiers optimized for different business needs:
// Plan structure from source/modules/prices/types/plan.ts
export interface Plan {
  id: string;
  name: string;
  description: string;
  priceMonth: number;      // Monthly price in USD
  priceYear: number;       // Annual monthly price in USD
  features: string[];      // Feature list
  buttonText: string;      // CTA text
  highlight: boolean;      // Featured plan indicator
}

Plan Comparison

Basic Plan - For Startups

Perfect for businesses just starting with WhatsApp automation.
// From get-plans.ts
{
  id: "basico",
  name: "Básico",
  description: "Para negocios que recién comienzan",
  priceMonth: 29,
  priceYear: 23,
  features: [
    "1 número WhatsApp",
    "Hasta 500 mensajes",
    "Respuestas automáticas IA"
  ],
  buttonText: "Comenzar prueba",
  highlight: false,
}

Monthly

USD $29 /month

Annual

USD $23 /month
Save $72/year with annual billing

Features Included

  • 1 WhatsApp Number: Connect a single business number
  • Up to 500 Messages: Monthly message allowance
  • AI Auto-Responses: Automated customer service
  • Basic Analytics: Essential performance metrics
  • 7-Day Free Trial: Test before committing
Ideal for small businesses with moderate customer inquiry volumes.

Billing Cycles

Monthly vs Annual Billing

Monthly Billing

  • Pay month-to-month
  • Cancel anytime
  • Full-price monthly rates
  • Automatic renewal on billing date
  • Ideal for short-term projects

Annual Billing

  • 20% discount on all plans
  • Billed annually (12 months upfront)
  • Save up to $360/year (Agency plan)
  • Best value for long-term users
  • Annual renewal option

Billing Toggle Implementation

// From billing-toggle.tsx - Toggle between monthly/annual
"use client";

interface BillingToggleProps {
  isAnnual: boolean;
  onToggle: () => void;
}

export function BillingToggle({ isAnnual, onToggle }: BillingToggleProps) {
  return (
    <div className="flex items-center gap-4 mb-12">
      <span className={`text-sm ${!isAnnual ? "font-bold" : "text-gray-500"}`}>
        Mensual
      </span>
      <button onClick={onToggle} className="relative w-12 h-6 bg-[#121f3d] rounded-full">
        <div className={`w-4 h-4 bg-white rounded-full transition-all 
                       ${isAnnual ? "translate-x-6" : "translate-x-0"}`} />
      </button>
      <span className={`text-sm ${isAnnual ? "font-bold" : "text-gray-500"}`}>
        Anual <span className="text-green-500 ml-1 text-xs font-bold">-20%</span>
      </span>
    </div>
  );
}
Use the billing toggle on /pricing to see real-time price calculations for monthly vs annual billing.

Pricing Calculation

How Prices Are Displayed

// Pricing card displays calculated price based on billing cycle
interface PricingCardProps {
  plan: Plan;
  displayPrice: number;  // Calculated based on billing cycle
}

// From pricing-card.tsx
<div className="flex items-baseline mb-8">
  <span className="text-sm font-medium">USD</span>
  <span className="text-5xl font-black mx-1">{displayPrice}</span>
  <span className="text-sm text-gray-500">/ mes</span>
</div>

Annual Savings Breakdown

PlanMonthly TotalAnnual TotalAnnual Savings
Básico$348/year$276/year$72 (20%)
Pro$708/year$564/year$144 (20%)
Agencia$1,788/year$1,428/year$360 (20%)
All prices in USD. Annual billing provides consistent 20% discount across all tiers.

Feature Comparison Matrix

FeatureBásicoProAgencia
WhatsApp Numbers11Up to 5
Monthly Messages500UnlimitedUnlimited
AI Responses✓ Basic✓ Advanced✓ Advanced
CRM Integration
Multi-Client Panel
White-Label
AnalyticsBasicAdvancedAdvanced
Priority Support✓ Dedicated
API Access
Free Trial7 days7 daysCustom

Getting Started with Your Plan

1

Select Your Plan

Navigate to /pricing and review plan features:
// Plans fetched from service
export async function getPlans(): Promise<Plan[]> {
  try {
    return MOCK_PLANS;
  } catch (error) {
    console.error("Error al obtener los planes:", error);
    throw new Error("No se pudieron cargar los planes de precios.");
  }
}
2

Choose Billing Cycle

Toggle between monthly and annual billing to see pricing:
  • Monthly: Full flexibility, cancel anytime
  • Annual: 20% discount, best value
3

Start Free Trial

Click plan button (“Comenzar prueba” or “Contactar ventas”):
  • No credit card for 7-day trial
  • Full feature access during trial
  • Automatic conversion after trial (if card added)
4

Complete Registration

Create your account at /register and configure your business

Plan Upgrade & Downgrade

Upgrading Your Plan

Instant UpgradesUpgrade at any time from your dashboard:
  1. Navigate to billing settings
  2. Select new plan tier
  3. Pay prorated difference
  4. Features activate immediately

Downgrading Your Plan

Downgrade TimingDowngrades take effect at next billing cycle:
  • Current plan remains active until renewal
  • No partial refunds for unused time
  • Features restricted after renewal date
  • Data retained for 30 days after downgrade

Payment Methods

Credit/Debit Cards

  • Visa, Mastercard, American Express
  • Secure payment processing
  • Automatic recurring billing
  • Instant activation

MercadoPago

  • Latin America’s trusted payment platform
  • Multiple payment methods
  • Local currency support
  • Flexible payment terms
New integration available

Frequently Asked Questions

Yes! During your 7-day trial, you can test any plan tier. Simply contact support or use the plan switcher in your dashboard.
You’ll receive notifications at 80% and 95% usage. At 100%, new messages won’t be processed until:
  • Next billing cycle starts
  • You upgrade to Pro (unlimited messages)
  • You purchase a message add-on package
Yes! When you select annual billing, the 20% discount is automatically calculated:
// Pricing logic
const displayPrice = isAnnual ? plan.priceYear : plan.priceMonth;
// priceYear already includes 20% discount
Pro plan includes 1 number. For additional numbers:
  • Upgrade to Agency plan (up to 5 numbers)
  • Purchase add-on numbers ($20/month each)
  • Contact sales for custom enterprise plans (5+ numbers)
White-label features include:
  • Custom branding on client dashboards
  • Your logo and color scheme
  • Custom domain mapping
  • Removal of RespondeIA branding
  • Client-facing documentation with your brand
Agency plan includes centralized management:
  • Single dashboard for all client accounts
  • Switch between client views instantly
  • Bulk operations across multiple accounts
  • Consolidated reporting and analytics
  • Individual client billing management

Enterprise Solutions

Need More Than 5 Numbers?Contact our sales team for custom enterprise plans:
  • Unlimited WhatsApp numbers
  • Custom feature development
  • Dedicated infrastructure
  • SLA guarantees
  • Volume discounts
  • Custom integrations
Email: sales@respondeia.com

Billing Support

Need help with billing or subscriptions?

API Documentation

Billing API reference

Support

Contact billing support

Dashboard

Manage subscription

Next Steps

1

Choose Your Plan

Visit Pricing Page to select the best fit
2

Start Free Trial

Register at Sign Up - no credit card required
3

Configure Your AI

Follow Customization Guide to train your assistant
4

Go Live

Connect WhatsApp using Quick Start guide

Build docs developers (and LLMs) love