Compare FREE, Subscription, and Enterprise plans. View your active plan, upgrade via Stripe checkout, or manage invoices from the Stripe customer portal.
Use this file to discover all available pages before exploring further.
Mapping.Travel organizes access into three plan tiers. Your plan determines how many mapping jobs your organization can run per day and how many suppliers you can connect. Limits are enforced per organization, so all team members share the same quota. You can view available plans and your current subscription at any time, and upgrade or manage your plan through Stripe.
Call GET /api/v1/billing/plans to retrieve all available plan tiers with their features and pricing. The response includes your current plan so you can compare it against other options.
Call GET /api/v1/billing/subscription to retrieve details about your active subscription, including its status, billing period, and whether it is set to cancel at period end.
To upgrade, create a Stripe checkout session with POST /api/v1/billing/checkout. Pass the stripePriceId from the plan tier you want to move to. Redirect your user to the returned url to complete payment.
1
Get the price ID for your target plan
Call GET /api/v1/billing/plans and copy the stripePriceId from the plan tier you want.
The response contains a url field. Redirect your user to that URL to complete the Stripe checkout. Once payment succeeds, your plan upgrades automatically.
To cancel, update payment details, or download invoices, open the Stripe customer portal with POST /api/v1/billing/portal. Redirect your user to the returned URL.