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:
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}")
REQUIRED: Bearer token authentication using your API key. Format: 'Bearer sk_xxxxxxxxxxxxx'. You can create API keys in the Mixpeek dashboard under Organization Settings.
Number of invoices to return
1 <= x <= 100