
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
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 0 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.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.