This server is used by the CrytpoQuery scraper bot and other applications to get, change, and store article data pulled in from the scraper bot.
Build:
npm install
Start:
npm start
- 104.131.149.181
Add articles to Mongo Database using aes encryption to ensure only scraper bots are adding articles.
link published_at author title description article
{
"link": "",
"published_at": "",
"author": "",
"title": "",
"description": "",
"article": ""
}
Note: Request must use AES encryption with the private key before sending request.
{
"auth": "<aes_cipher_text>"
}
Gets all articles based on article ids in the request body.
{
"article_id": [""]
}
Gets articles based on urls supplied in the request body.
{
"url": ["https://..."]
}
Gets articles based on a start and end date supplied in the request body.
{
"start_date": "",
"end_date": ""
}