New in Chargebee: Explore Reveal and understand your payment performance end-to-end.Try Now
Docschargebee docs
HomeBillingPaymentsRevRecGrowthReveal
Support

Product Updates


  • Release Notes

Getting Started


  • Overview
  • Chargebee Billing Data Centers
  • Object Relationship Model
  • Understanding Sites
  • Developer Resources
  • Chargebee Tech Glossary
  • Articles and FAQ

Implementing Chargebee


  • Implementation Guide
  • Go-live Checklist
  • Articles and FAQ

AI in Chargebee


  • Chargebee Copilot
  • Chargebee MCP Server (Model context protocol)

Product Catalog


  • Product Catalog Overview
  • Coupons
  • Articles and FAQ

Subscriptions


  • Working with Subscriptions
  • Billing
  • Orders
  • Articles and FAQ

Customers


  • Managing Customers
  • Account Hierarchy
  • Email Notifications
  • Branding
  • Configure Multiple Languages
  • Articles and FAQ

Invoices, Credit Notes and Quotes


  • Invoices
  • Credit Notes
  • Quotes [Legacy]
  • Transactions
  • Articles and FAQ

Taxes


  • Overview
  • Configuring Taxes
  • Country-specific Taxes
  • Articles and FAQ

Hosted Capabilities


  • Overview
  • Hosted Checkout
  • Hosted Self-Serve Portal
  • Hosted Pages Features
  • Additional Hosted Pages
  • Payment Components
  • Managing payments with ChargebeeJS
  • Mobile-Optimized Hosted Pages
  • Articles and FAQ

Site Configuration


  • Users & Roles
  • Custom Fields & Metadata
  • Mandatory Fields
  • File Attachments & Comments
  • Advanced Filter Options
  • Multicurrency Pricing
  • Multi-decimal Support
  • Configuring Reason Codes
  • Events and Webhooks
  • API Keys
  • Time Zone
  • Time Machine
  • Transfer Configurations
  • Articles and FAQ

Reports and Analytics


  • RevenueStory
  • Home Dashboard
  • Frequently Asked Questions
  • FAQs for Classic Reports Sunset
  • Articles and FAQ

Integrations


  • Sales
  • Customer Support and Success
  • Finance
  • Tax
  • Marketing
  • Stitch
  • Collaboration
  • Contract Management
  • Order Management
  • Mobile Subscriptions (Legacy)
  • Other Integrations
  • Articles and FAQ

Data Privacy & Security


  • Two Factor Authentication
  • SAML Single Sign-On
  • System for Cross-Domain Identity Management (SCIM)
  • EU-GDPR
  • Consent Management
  • Personal Data Management
  • Compliance Certificates
  • HIPAA Guidelines
  • PCI Recommendations and Integration Types
  • Articles and FAQ

Data Operations


  • Bulk Operations
  • Migration
  • Articles and FAQ
  1. Billing
  2. Subscriptions
  3. Articles and FAQ
  4. APIs
  1. Billing
  2. Subscriptions
  3. Articles and FAQ
  4. APIs

How do I calculate the next billing amount using Chargebee API?

Problem statement

This article explains how to calculate the next billing amount for an existing subscription using the Chargebee API.

Solution

Use the Subscription renewal estimate API to get an estimate of the amount that will be charged on the subscription's next billing date.

The API response includes:

  • estimate.subscription_estimate: Subscription details, such as status and next billing date.
  • estimate.invoice_estimate: Invoice details for the next billing date.

Steps to calculate the next billing amount

  1. Ensure that you have your Chargebee site subdomain and API key.

  2. Use the following API endpoint:

    curl https://test-site.chargebee.com/api/v2/subscriptions/__subscription_id__/renewal_estimate 
        \ -u test_api_key:
    
  3. To customize the estimate, pass optional query parameters:

    • include_delayed_charges
    • use_existing_balances
    • ignore_scheduled_cancellation
    • ignore_scheduled_changes
    • exclude_tax_type

    Example:

    curl "https://test-site.chargebee.com/api/v2/subscriptions/__subscription_id__/renewal_estimate?include_delayed_charges=true&use_existing_balances=false&ignore_scheduled_changes=false&exclude_tax_type=none" 
        \ -u test_api_key:
    
  4. Review the following fields in the response:

    • estimate.invoice_estimate.total
    • estimate.invoice_estimate.amount_due
    • estimate.invoice_estimate.sub_total
    • estimate.invoice_estimate.line_items
    • estimate.subscription_estimate.next_billing_at

Additional information

  • This API is not supported for canceled subscriptions.
  • For non-renewing subscriptions, only delayed charges are included in the invoice estimate.
  • If an advance invoice already exists for the subscription, this API does not generate a renewal invoice estimate.
  • If consolidated invoicing is enabled, use the Upcoming Invoices estimate API for the customer to get the actual invoice estimate.

Related Documents

  • Subscription renewal estimate
  • Chargebee API documentation

Was this article helpful?