BUILD: 431

AI Stock Market Analyst API

Introduction

Welcome to the AI Analyst API! This API provides fundamental analysis data for a given stock ticker. Simply send a GET request to the endpoint with your API key and the stock ticker to retrieve the data. More endpoints coming very soon.

Retrieving data sometimes may take up to 60 seconds, so be patient and don't overuse it.

Endpoint

/api/v1/fundamental-analysis

Parameters

Example Request

GET /api/v1/fundamental-analysis?api_key=qwerty&ticker=AAPL

Example Response

        {
          "fundamental-analysis": "Apple Inc. (AAPL) has been making h...,
          "symbol": "AAPL"
        }
      

Error Handling

If the API key is invalid, the following response will be returned:

        {
          "error": "Invalid API key"
        }
      

If the ticker is not provided, the following response will be returned:

        {
          "error": "Ticker not provided"
        }