List Invoices
Billing
List Invoices
List monthly invoices.
Returns paginated list of monthly invoices with links to Stripe-hosted invoice pages.
Query Parameters:
limit: Number of invoices (1-100, default 10)
Requirements:
- Read permission
Example:
response = await client.get("/v1/organizations/billing/invoices?limit=10")
for invoice in response["invoices"]:
print(f"{invoice['billing_month']}: ${invoice['amount_paid']/100}")
GET
List Invoices
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Number of invoices to return
Required range:
1 <= x <= 100
