SaveNowClub Features |
started by MikeSmith @ Dec 18 '20 at 02:24 |
This document is a run down of SaveNowClub and/or ReplyBot features.
SaveNowClub's proprietary Email Reader Robot (watch demo video to see the robot in action) utilizes text mining technology to parse car shopping email messages and automatically create vehicle price quote reports from them. Here is a list of robot capabilities (as of July 2017):
All extracted dealer, vehicle, price quotes and MSRP information are displayed as a report to you in "My Quotes" section after you login.
Email Reader Robot is still at infancy stage, our goal is to give more and more strength to it overtime so that it will be able to do more and more sophisticated work of managing dealer emails traditionally done by car buyers manually.
SaveNowClub's Email Reply Bot is an auto-response email solution for car buyers to automate replying car shopping related emails, it leverages vehicle quote information extracted by Reader Robot, automatically finds better price quote in SaveNowClub's vehicle quote database for same make and model and similar year vehicle and reply dealer email and request dealer to match the found better vehicle quote.
As of April 2019, Reply Bot responds to the following types of inbound emails * Edmunds PricePromise Emails, example: for this inbox message (raw html), Reply Bot will generate this sent message (raw html).
Reply Bot API is a collection of replybot.io API that offers entry points to Reader Bot and Reply Bot features in backend.
Accessing Reply Bot and Reader Bot API requires a API key which is free to obtain.
Obtain an API Key
To Use API Key, add X-API-KEY
header to your API request and supply your API key obtained from savenowclub.com web app. See this curl command for example
shell
curl --header "X-API-KEY: [API_KEY]" --data "URL=https://raw.githubusercontent.com\
/Buytition/pub_docs/master/raw-text/inbox-201812120906-edmunds-pricepromise.html" \
https://savenowclub.com/api/v1/reader_bot/get_vehicle_price_quotes
Usage Plan: your free obtained API keys automatically fall into lite usage plan with the following specs
To upgrade your usage plan, please contact buytition@gmail.com
This API brings developers programmatic access to Reader Bot. To access this API, please read API access section.
Reader Bot API contains the following entry points:
|make |model |# of quotes |min price $ |% off MSRP | |--- |--- |--- |--- |--- | |ford |escape |18 |15899 |38 | |ford |focus |13 |11900 |38 | |ford |f-150 |17 |18199 |36 | |ford |fusion hybrid |1 |20497 |36 | |ford |fiesta |11 |10420 |36 | |ford |fusion |18 |14984 |33 | |ford |edge |5 |20998 |27 | |ford |explorer |17 |23999 |26 | |ford |mustang |12 |19993 |24 |
ReplyBot Vehicle Price Quotes Reader API is a service that automatically extracts vehicle model and price quotes from email or HTML documents.
Use cases
API Specs
https://savenowclub.com/api/v1/reader_bot/get_vehicle_price_quotes
Sample API call
Input
curl --header "X-API-KEY: [API_KEY]" --data "URL=https://raw.githubusercontent.com\
/Buytition/pub_docs/master/raw-text/inbox-201812120906-edmunds-pricepromise.html" \
https://savenowclub.com/api/v1/reader_bot/get_vehicle_price_quotes
note: replace [API_KEY]
with your own API key
Output
json
{
"elapsed_sec": 0.2,
"finish_utc": "2019-06-16 20:41:03",
"input": {
"URL": "https://raw.githubusercontent.com/Buytition/pub_docs/master/raw-text/inbox-201812120906-edmunds-pricepromise.html",
"content-length": "3750",
"content-type": "text/plain; charset=utf-8",
"type": "EMAIL-TEXT",
"via": "POSTED-URL"
},
"msg": null,
"output": {
"list_quotes": [
{
"MSRP": 39990,
"make": "ford",
"model": "edge",
"quote_amt": 35767,
"saving_amt": 4223,
"saving_pct": 10.6,
"year": 2019
}
],
"num_quotes": 1
},
"status": "success"
}
ReplyBot Dealer Info Reader API is a service that automatically extracts vehicle dealer information from email or HTML documents. This service automatically lookup email sender among merchant database using either sender email address or email content or both. If a match is found, this service returns the matched merchant information, as of now, the supported merchants are US vehicle dealers.
Use cases
API specs
https://savenowclub.com/api/v1/reader_bot/get_dealer_info
Sample API call
Input
curl --header "X-API-KEY: [API_KEY]" --data "URL=https://raw.githubusercontent.com\
/Buytition/pub_docs/master/raw-text/inbox-201812120906-edmunds-pricepromise.html" \
https://savenowclub.com/api/v1/reader_bot/get_dealer_info
note: replace [API_KEY]
with your own API key
Output
json
{
"elapsed_sec": 0.1,
"finish_utc": "2019-06-16 20:37:50",
"input": {
"URL": "https://raw.githubusercontent.com/Buytition/pub_docs/master/raw-text/inbox-201812120906-edmunds-pricepromise.html",
"content-length": "3750",
"content-type": "text/plain; charset=utf-8",
"type": "EMAIL-TEXT",
"via": "POSTED-URL"
},
"msg": null,
"output": {
"list_dealers": [
{
"dlr_addr": "1051 E Broad St, Falls Church VA 22044",
"dlr_name": "Koons Ford of Falls Church",
"id": 7821
}
],
"num_dealers": 1
},
"status": "success"
}
Terms of Use: You are in agreement with our Terms of Services and Privacy Policy. The Price Paid or Price Offer Records published for free or for sale on SaveNowClub platform were contributed by registered SaveNowClub users and satisfy our Listing Criteria. The registered users who publish price records own these price records and take full reponsibility of any consequences as a result of publishing these price records. SaveNowClub hereby claim that we do not own these price records nor do we guarantee their accuracy. If you have any question or concern to any information published on SaveNowClub, please feel free to write to us at savenowclub@gmail.com