Adapt2Move Developer Docs
Build mobility integrations with a unified API that aggregates multiple mobility providers into a single, consistent interface.
Quick Start
Make your first API call in 5 minutes. Search, compare, and book vehicles across providers.
Core Concepts
Understand multi-provider aggregation, encrypted offer tokens, and the booking lifecycle.
Booking Workflow
Walk through the complete 7-phase flow from search to confirmation.
API Reference
Interactive OpenAPI documentation with all endpoints and schemas.
What is Adapt2Move?
Adapt2Move provides a unified Mobility API for businesses with corporate travel needs. Instead of integrating with each mobility provider individually, you make one API call and get consolidated results with real-time pricing and availability.
Supported modalities: Public transport (local and long-distance), car rental, car sharing, bike and scooter sharing — with additional modalities planned.
Getting Started in 3 Steps
Create an API Key
Log in to the Dashboard Portal, navigate to your tenant, and create an API key. You'll get a key prefixed with a2m_test_ for development. See Authentication for details.
Make Your First Request
Use the key to search for available vehicles. The example below searches for car rentals in Berlin.
Build Your Integration
Explore Core Concepts, follow the Booking Workflow, and check the OpenAPI Reference for all endpoints.
curl -X POST https://adapt2move.de/mobility-api/v2/cars \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"pickup": {
"type": "coordinates",
"coordinates": { "latitude": 52.52, "longitude": 13.405 },
"radiusMeters": 5000
},
"dates": {
"start": "2026-12-15T10:00:00Z",
"end": "2026-12-20T10:00:00Z"
}
}'
Developer Tools
Import the API schema into your favorite tool to explore and test endpoints:
- OpenAPI Schema (JSON) — Import into Postman, Insomnia, or any OpenAPI-compatible client
- Interactive API Reference — Browse endpoints with Scalar, try requests directly in the browser
- Changelog — Latest updates and new features
Need help? Email info@adapt2move.de with your requestId from the API response and a description of your use case.