
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Car2Go REST API
car2go can be used to access car2go's API. If you'd like to use their API and this module you must first request an oauth key and secret.
npm install car2go
var car2go = require("car2go").createClient({
key: MY_OAUTH_KEY,
secret: MY_OAUTH_SECRET
});
// get a list of available cars in Toronto in JSON format
car2go.vehicles({
format: "json",
loc: "Toronto"
}, function(err, cars) {
if (err) {
return console.log(err);
}
console.log(cars);
});
List of all the cities that car2go operates in.
car2go.locations(function(err, locations) {
console.log(locations);
});
// Output
[
{
"countryCode": "CA",
"defaultLanguage": "en",
"locationId": 13,
"locationName": "Toronto",
"mapSection": {
"center": {
"latitude": 43.65396,
"longitude": -79.38635
},
"lowerRight": {
"latitude": 43.6263638049989,
"longitude": -79.2129903230651
},
"upperLeft": {
"latitude": 43.67671718155003,
"longitude": -79.55942239476869
}
},
"timezone": "Canada/Eastern"
},
... more cities
]
List available vehicles in a city
loc
Required - The city to list vehicles in.format
- The output format. Must be kml
or json
, defaults to kml
.car2go.vehicles({
format: "json",
loc: "Toronto"
}, function(err, vehicles) {
console.log(vehicles);
});
// Output
{
address: 'Green P-141 Greenlaw Ave(S of St Clair Ave W)',
coordinates: [ -79.44774, 43.6762, 0 ],
engineType: 'CE',
exterior: 'GOOD',
fuel: 100,
interior: 'GOOD',
name: 'BPXL726',
vin: 'WMEEJ3BA8DK643640'
},
... more cars
FAQs
Car2Go REST API
The npm package car2go receives a total of 1 weekly downloads. As such, car2go popularity was classified as not popular.
We found that car2go demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.