Query Billing data
Billing is made up of different components that work together to provide one-off invoices and periodic billing, with different aspects of billing data available across a number of tables. All billing-specific tables are in the Billing section of the schema, with the primary tables being subscriptions
and invoices
.
To explore billing data further, you can use the additional tables that represent the components of subscriptions and invoices, such as prices
, products
, or coupons
. In addition, the customers
table is a fundamental part of billing, and contains data you might need to report on.
Subscriptions
Each row within the subscriptions
table represents data about an individual Subscription object—the same information that the API retrieves or is available in the Stripe Dashboard. You can report on every subscription that you create on your account.
This table is our recommended starting point for creating reports about your current subscribers. You can join this to other related tables, allowing you to explore your data in more detail.
The following example retrieves a list of subscriptions that have been marked as unpaid, along with any available contact information for the customer.
select subscriptions.id, subscriptions.customer_id, customers.email from subscriptions inner join customers on customers.id = subscriptions.customer_id where subscriptions.status = 'unpaid' limit 5
id | customer_id | |
---|---|---|
sub_Fw5mrIcztP3lcTJ | cus_MF1LMHQDA5s0tzc | jenny.rosen@example.com |
sub_w4u80XP7PJDMizp | cus_kOVfNFmTdOT8Ra2 | noah.wilson@example.com |
sub_rhH32smeBOeN7U4 | cus_36ChbA7HFZF2ZlN | joshua.miller@example.com |
sub_7Zf8qDupOn7aFV4 | cus_gqYxjO1SJyUG6Ko | madison.jackson@example.com |
sub_LJ83ZIkZQwoSbR6 | cus_N1z3o3fuB1lvjxt | elijah.smith@example.com |
Customers
Data about Customer objects are contained in the customers
table (this isn’t part of the Billing Tables group). It’s commonly used as part of billing-based reports and can be joined to a number of tables. It’s also useful if you’re creating charges with saved payment information.
The following example retrieves a list of customers with subscriptions that are currently in a trial period. It retrieves both the ID and email address for each customer.
select customers.id, customers.email, subscriptions.price_id from subscriptions inner join customers on customers.id = subscriptions.customer_id where subscriptions.status = 'trialing' limit 5
id | price_id | |
---|---|---|
cus_JFkTdMVzvkIF61e | jenny.rosen@example.com | ruby-pro-522 |
cus_etW2cBcIVucW8eh | noah.wilson@example.com | ruby-pro-522 |
cus_ZAngyBT27wc4oav | richard.jones@example.com | gold-basic-221 |
cus_ugLVxPOfXY80QIR | madison.jackson@example.com | gold-basic-221 |
cus_UrRGhLz8ZvLGrkG | elijah.smith@example.com | silver-pro-498 |
Products and Prices
Products describe items that your customers can purchase with a subscription. Prices are tied to products and set out the cost, billing interval, and currency. When viewing data from the subscriptions
table, subscriptions.price_id
can be joined to prices.id
, and prices.product_id
can be joined to products.id
. The following example returns a list of active subscriptions along with the product name and its statement descriptor.
select subscriptions.id, products.name, products.statement_descriptor from subscriptions inner join prices on subscriptions.price_id = prices.id inner join products on prices.product_id = products.id where subscriptions.status = 'active' limit 10
id | name | statement_descriptor |
---|---|---|
sub_DTPlFRFc4WTnUYQ | ruby-pro-522 | Ruby Pro |
sub_JIJIwe6aM0PySan | gold-basic-221 | Gold Basic |
sub_dHFkcdKCCKmDbSZ | silver-pro-498 | Silver Pro |
sub_mDJGNeKzfS0qj7Z | diamond-mid-244 | Diamond Mid |
sub_qpQLPZG8GnA4dnF | ruby-standard-196 | Ruby Standard |
Invoices
The invoices
table contains data about individual Invoice objects. Each subscription generates an invoice on a recurring basis that represents the amount the customer owes. This automatically includes the amount required for the subscription, and any additional invoice items that might have been created (listed as line items).
Invoices are comprised of individual (invoice) line items. These line items represent any subscriptions that the customer is billed for, and invoice items that have been created and applied to the invoice. To break down an invoice and analyze each of its line items, use the invoice_line_items
table.
The source_id
column of this table contains the ID of either the subscription (for example, sub_RjsOb2NmrcJzbYI
) or invoice item (for example, ii_2ioOxCPnDxnldez
) that the line item corresponds to. The source_type
column reflects whether the line items represent a subscription or an invoice item.
Unlike other foreign keys, the subscription
column of the invoice_line_items
table isn’t always populated. If the corresponding invoice item is a subscription, this column is blank—its ID already appears in the source_id
column.
Invoice items
Data about Invoice items is provided in the invoice_items
table. Invoice items are commonly used to specify an additional amount (or deduct an amount) that’s applied on the next invoice at the beginning of the next billing cycle. For example, you would create an invoice item if you need to bill your customer for exceeding their monthly allowance, or if you need to provide a credit on the next invoice for unused service.
The following example retrieves all the invoices and associated charge IDs for a particular subscription.
select id, charge_id, amount_due from invoices where subscription_id = 'sub_ALJXL9gBYtv6GJ'
id | name | |
---|---|---|
in_1Uphj5ubrj65II2 | ch_vw4iH8NQ0dWxfQz | 1999 |
in_kLMBFLtJQlFkgQP | ch_FBZDYNmuYSgFmE6 | 1999 |
in_3lOuyIGmneQSJeA | 1999 | ch_xVkkgBPskJc1iqz |
in_GvJiSxo3QFMpYX6 | 1999 | ch_sxZrtz473IoAtCA |
in_9TzeE7SA7tfgM7Q | 1999 | ch_sVPRh6RG8tSW6mZ |
Invoice totals and discounts
The invoice subtotal represents the amount of all subscriptions, invoice items, and prorations on the invoice before any discount is applied. The invoice total is the amount after discounts and tax have been applied:
invoice.total
= invoice.subtotal
- discount
+ invoice.tax
There is no column to represent the discount amount on an invoice. Instead, you can calculate this by using the total, subtotal, and tax amounts:
discount
= invoice.total
- invoice.tax
- invoice.subtotal
Working with invoice dates and periods
As subscription invoices are pre-billed, the customer pays at the start of a billing period. This is reflected in the value for a line item’s period
. For instance, a customer on a monthly subscription is charged at the start of each month. If they cancel, their subscription remains active until the end of that month, at which point the subscription ends.
The period_start
and period_end
values of an invoice represents when invoice items might have been created–it’s not always indicative of the period of service that the customer is being billed for. For example, if a customer is billed on the 1st of each month and exceeds their monthly allowance on the 15th, you might create an invoice item for any additional costs that the customer is charged for. This invoice item is then included in the next invoice, which is created on the 1st of the next month. When the next invoice is generated, the period_start
date would be the 15th of the previous month—the date the additional line item is first created.
Coupons and discounts
A Coupon object represents an amount or percentage-off discount that can be applied to subscriptions or customers. A discount is the application of a coupon, represented by a Discount object.
Discounts aren’t tabulated separately. Instead, join coupon.id
to either customers.discount_coupon_id
or subscriptions.discount_coupon_id
, which returns the coupon information for the discount that has been applied. For example, the following query returns a list of subscriptions where a coupon was applied to create a discount, along with the coupon’s discount amount or percentage.
select coupons.id, coupons.amount_off, coupons.percent_off from coupons where valid = false limit 5
id | amount_off | percent_off |
---|---|---|
10FF | 10 | |
SUMMER25 | 25 | |
10FREE | 10 | |
15OFF | 15 | |
FALL30 | 30 |