https://github.com/jakepartusch/craigslist-vehicle-tracker
An application that sends notifications when a desired vehicle is found on craigslist
https://github.com/jakepartusch/craigslist-vehicle-tracker
Last synced: 15 days ago
JSON representation
An application that sends notifications when a desired vehicle is found on craigslist
- Host: GitHub
- URL: https://github.com/jakepartusch/craigslist-vehicle-tracker
- Owner: JakePartusch
- Created: 2016-11-12T03:39:58.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-10T02:24:46.000Z (over 7 years ago)
- Last Synced: 2025-03-12T02:38:44.795Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Getting Started
- Tested with Node Version 6.0.0 & npm version 3.10.5
- Rename `example-config.js` to `config.js` and edit the propertiesTo run:
```bash
npm install
npm start
```### Example URL:
[http://localhost:8000/vehicle/search?city=omaha&minAsk=5000&maxAsk=15000&minAutoYear=2005&maxAutoYear=2016&autoMakeModel=lexus](http://localhost:8000/vehicle/search?city=omaha&minAsk=5000&maxAsk=15000&minAutoYear=2005&maxAutoYear=2016&autoMakeModel=lexus)### Example response:
```javascript
[
{
"category": "",
"date": "2016-11-12 00:00",
"hasPic": true,
"location": "",
"pid": "123456789",
"price": "$10800",
"title": "2007 LEXUS IS 250 AWD",
"url": "https://omaha.craigslist.org/cto/123456789.html"
},
{
"category": "",
"date": "2016-11-11 00:00",
"hasPic": true,
"location": "",
"pid": "123456789",
"price": "$9950",
"title": "2009 Lexus IS250 AWD SPORT",
"url": "https://omaha.craigslist.org/cto/123456789.html"
}
]
```### Email format:
```
2007 LEXUS IS 250 AWD: $10800
https://omaha.craigslist.org/cto/123456789.html2009 Lexus IS250 AWD SPORT: $9950
https://omaha.craigslist.org/cto/123456789.html
```