Exporters
Exporters are an important part of the DEX8 platform. The primary storage for extracted/scraped data is a NoSQL database. The Exporter will take NoSQL/JSON data and convert it into the format that you would like to use.Currently, the DEX8 platform uses CSV Exporter.
Data from a NoSQL database can also be accessed via API endpoints.
As the user has full NoSQL database access, all data can be converted to any format from the local computer.
CSV Exporter
When data from the NoSQL database is selected and listed, it is ready for CSV export.By clicking on Export Documents, all listed data will be downloaded to the local computer.

API Exporter
API Exporter has 4 endpoints:- GET /{apiSecret}/mongo/{datbase_id}/{database_name}/list?limit=&skip=&sort=&select= - list results (documents) which can be paginated
- GET /{apiSecret}/mongo/{datbase_id}/{database_name}/{document_id} - get a document
- DELETE /{apiSecret}/mongo/{datbase_id}/{database_name}/{document_id} - delete a document
- PUT /{apiSecret}/mongo/{datbase_id}/{database_name}/{document_id} - modify a document

Every endpoint requires API Secret which can be modified from the popup modal when the API Secret button is clicked. Any external application can use API endpoints by utilising API Secret key.
