Every request to the Mapping.Travel API must include a valid Bearer token in theDocumentation Index
Fetch the complete documentation index at: https://docs.mapping.travel/llms.txt
Use this file to discover all available pages before exploring further.
Authorization header. You obtain this token from your Mapping.Travel account dashboard. Requests without a valid token are rejected with a 401 response before they reach any endpoint logic.
Get your API token
Sign in to your Mapping.Travel account at mapping.travel and navigate to Settings → API tokens. Generate a token for your organization. Copy it immediately—it is only shown once.Include the token in requests
Pass your token as a Bearer token in theAuthorization header on every request:
Example
<your-token> with your actual token value.
Authentication errors
401 Unauthorized
You receive a401 response when the Authorization header is missing or the token is invalid (expired, malformed, or revoked).
401, verify that:
- The
Authorizationheader is present and spelled correctly - The token value starts with
Bearer(note the trailing space before the token) - The token has not expired or been revoked in your dashboard
403 Forbidden
A403 response means your token is valid but your account cannot perform the action. This typically occurs when your plan quota is exhausted.
GET /api/v1/billing/usage to inspect remaining quota programmatically.
Rate limiting
The API enforces per-organization rate limits. When you exceed the limit, the API returns a429 Too Many Requests response.