This is an unofficial Node.js client for the VanMoof Web API.
- This library provides read-only access to your VanMoof account information only
- You cannot connect to any bike via Bluetooth
- You cannot change any information or settings
npm install vanmoof-webapi.jsThe minimum required version of Node.js is 20.x
new VanMoofApiClient(username, password)
Creates a new API client instance.
- username(string, required): Your VanMoof account email
- password(string, required): Your VanMoof account password
async initialize()
Authenticates with the VanMoof servers, fetches all necessary tokens and the base customer data. This method must be called before any other methods can be used.
getBikes()
Returns an array of bike objects associated with the account. Throws an error if the client has not been initialized.
getCustomerData()
Returns the raw customer data object fetched during initialization. Throws an error if the client has not been initialized.
async getRidesData(bikeId)
Fetches (or retrieves from cache) the weekly rides data object for a specific bike. This data is used internally by getOdometer and can be used for more advanced analysis of ride statistics.
- bikeId(number, required): The ID of the bike.
async getOdometer(bikeId)
Returns the total odometer reading in kilometers for a specific bike. This method automatically determines the correct API endpoint to use based on the bike's model generation.
- bikeId(number, required): The ID of the bike.
To see the library in action, refer to the included example file. It provides a practical demonstration of the core workflow: initializing the client, and then outputting key customer data (like name and email) along with a list of all associated bikes and their odometer readings.
Copy the settings.js file to the parent folder of the working directory
cp example/settings.js ./../Add your VanMoof account information to this file
exports.ACCOUNT_ID = 'email@domain.com';
exports.PASSWORD = 'topSecretPassword';cd example
node ./customerAndBikeData.js∙ Name: John Doe
∙ Email: johndoe@domain.com
∙ Number of bikes: 1
───────────────────────
▻ Bike #1 (id: xxxxxx):
───────────────────────
∙ name: My S3
∙ frame number: xxxxxxxxxx
∙ mac address: xx:xx:xx:xx:xx:xx
∙ distance: 1732.4 km
∙ firmware: 1.8.2
∙ is tracking: false
∙ is stolen: false
∙ color: Dark
∙ color code (primary): #25282a
∙ color code (secondary): #25282a
- Refactored the API client to provide multi-model odometer support
- Bumped the minimum required version of Node.js to 20.x
- Removed axios from dependencies
- Bumped axios to 1.7.9
- Fixed base url
- Bumped axios to 1.4.0
- Added new logo
- Implemented basic functionality
- Added example app
This is an unofficial library and is not affiliated with, maintained, or endorsed by VanMoof. The VanMoof API is not officially documented and may change at any time, which could break the functionality of this library. Use at your own risk.
- @Poket-Jony (VanBike-Library)
- @mjarkk (Mooovy)
- Stefan Stranger (Stefan Stranger's Blog)
MIT License
Copyright (c) 2025 Sascha Hölzel mrb1232@posteo.de
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
