Mapping.Travel provides several endpoints to help you understand how much of your quota you have consumed and what it has cost. Use real-time quota checks before starting jobs, inspect monthly totals for cost tracking, and pull up to 12 months of historical data for reporting.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.
Quota status
CallGET /api/v1/billing/quota/status to check your organization’s current quota in real time. This is the fastest way to determine whether your organization can run another mapping job right now.
| Field | Description |
|---|---|
canProceed | true if the organization can run another mapping job. false if the daily limit is reached and credits are exhausted. |
remainingQuota | Mapping jobs remaining today before credits are drawn |
usagePercentage | Percentage of the daily quota consumed (0–100) |
mappingsPerDayLimit | Total daily mapping jobs allowed under your current plan |
mappingsUsedToday | Mapping jobs already run today |
maxSuppliers | Maximum number of suppliers your plan allows |
creditBalance | Credit balance available for over-quota jobs, or null if no credits have been purchased |
When
canProceed is false and creditBalance is null, your organization has hit its daily limit with no credits remaining. Purchase credits or wait until the quota resets.Plan details
CallGET /api/v1/billing/plan for a combined view of your plan configuration and current usage. This includes how many matches you have used this month, the cost so far, and how much quota remains.
Usage summary
CallGET /api/v1/billing/usage for a high-level summary of your organization’s API activity.
Current-month metrics
CallGET /api/v1/billing/metrics/current-month to see how many mappings your organization has processed this billing month and what they have cost so far.
| Field | Description |
|---|---|
billingMonth | Month in YYYY-MM format |
matchesProcessed | Total mapping jobs run this month |
costPerMatch | Per-mapping cost under your plan (in euros) |
totalCost | Total amount accrued this month (in euros) |
usagePercentage | Proportion of your monthly quota consumed |
Historical metrics
CallGET /api/v1/billing/metrics/history to retrieve month-by-month metrics for up to the past 12 months. Use the limit query parameter to control how many months are returned.
limit to any value from 1 to 12.
Organization statistics
CallGET /api/v1/statistics to retrieve aggregate counts for your organization: total inventory uploads, total mappings run, and the number of mapping results ready to export.
- Monitoring quota before a job
- Monthly cost report
Check
canProceed before submitting large mapping jobs to avoid unexpected credit consumption.