Dott provides an API to access available cities by countries and information about scooters and bikes in those cities. The API uses the GBFS (General Bikeshare Feed Specification) format to provide standardized data.
To get the list of available cities by countries, use the following endpoint:
URL: https://gbfs.api.ridedott.com/public/v2/countries/{countries}/gbfs.json
Countries: fr, de, ... (check the website for more countries)
The main GBFS URL provides general information about the city's bike and scooter sharing system.
URL: https://gbfs.api.ridedott.com/public/v2/{city}/gbfs.json
Parameter:
city
: Provide the city name.
To get the different types of vehicles available in the city (bike, scooter, etc.), use the following endpoint:
URL: https://gbfs.api.ridedott.com/public/v2/{city}/vehicle_types.json
Method: GET
To get the pricing information for different vehicle types, use the following endpoint:
URL: https://gbfs.api.ridedott.com/public/v2/{city}/system_pricing_plans.json
Method: GET
To get real-time information on available vehicles, use the following endpoint:
URL: https://gbfs.api.ridedott.com/public/v2/{city}/free_bike_status.json
Method: GET
To get the geofencing zones for the city, use the following endpoint:
URL: https://gbfs.api.ridedott.com/public/v2/{city}/geofencing_zones.json
Method: GET
To get the parking locations for vehicles, use the following endpoint:
URL: https://gbfs.api.ridedott.com/public/v2/{city}/station_information.json
Method: GET