| Endpoint | Description | Example |
|---|---|---|
| /getNumbers/<string:ticker> | Returns a CSV string of the Open, High, Low, and Close values up to one month in the future | https://foresightapi.herokuapp.com/getNumbers/tsla |
| /getNews/<string:ticker> | Returns a dictionary of news articles including title, publication time, and url. | https://foresightapi.herokuapp.com/getNews/tsla |
| /getInfo/<string:ticker> | Returns a dictionary of basic company info like name, logo, description, current value, and change. | https://foresightapi.herokuapp.com/getInfo/tsla |
| /getFinancials/<string:ticker> | Returns a dictionary of the Income statement, Balance sheet, and cash flow. | https://foresightapi.herokuapp.com/getFinancials/tsla |
| /isTickerValid/<string:ticker> | Returns a "true" if valid, "false" if its not. | https://foresightapi.herokuapp.com/isTickerValid/tsla |