The quota and usage endpoints give you full visibility into your organization’s consumption. Use the quota status endpoint to determine whether mappings can run right now, the credit balance endpoint to track pay-as-you-go spend, the usage summary for a current-period overview, and the metrics endpoints for historical trend data.Documentation Index
Fetch the complete documentation index at: https://mappingtravel.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
All endpoints on this page require authentication. Include your bearer token in the
Authorization header.GET /api/v1/billing/quota/status
Get your organization’s real-time quota status.canProceed before submitting large batches.
Response
Whether your organization can run mappings right now.
false means you have exhausted your daily limit or credit balance.Human-readable explanation of the current quota state.
Number of mappings remaining before your limit is reached.
Percentage of the quota consumed. Value between 0 and 100.
Your active plan type (e.g.
FREE, SUBSCRIPTION, ENTERPRISE).The quota enforcement mechanism in use:
daily_limit or credit_balance.Your plan’s daily mapping limit.
Number of mappings you have run today.
Maximum number of suppliers your plan allows.
Remaining pay-as-you-go credit balance. Only present when your quota type is
credit_balance and the balance is greater than zero.Example
GET /api/v1/billing/credits/balance
Retrieve your pay-as-you-go credit balance.Response
Raw credit units remaining. 1 million credits = 1 million mappings = €1.
Total credit units consumed to date.
Total amount spent in euros across all credit purchases.
Example
GET /api/v1/billing/usage
Retrieve a cumulative usage summary for your organization in the current billing period.Response
The billing period this summary covers (e.g.
2026-04).Total number of mappings processed in this period.
Total cost accrued this period in euros.
Breakdown of usage per connected supplier.
Example
GET /api/v1/billing/metrics/current-month
Retrieve detailed metrics for the current calendar month.Response
Month identifier in
YYYY-MM format.Total matches processed this month.
Cost per match in euros for this billing period.
Total cost for this month in euros.
Percentage of your monthly quota consumed.
Example
GET /api/v1/billing/metrics/history
Retrieve historical monthly metrics.Query parameters
Number of past months to return, up to 12. Results are ordered from most recent to oldest.
Response
Returns an array of monthly metrics objects, using the same schema asGET /api/v1/billing/metrics/current-month.
Month in
YYYY-MM format.Matches processed in that month.
Cost per match for that billing period.
Total cost for that month in euros.