DEV Community

Dipankar Shaw
Dipankar Shaw

Posted on

Indian Stock Market API

What am I doing?

I am making an API for Indian Stock market and Mutual Funds.
This API will serve data like -

  • List of open IPOs (available)
  • List of open NFOs (available)
  • Events data, like - Dividend, Bonus etc. (will be available)

What can you do with it?

  1. A simple bot that posts this every morning in your twitter(X), facebook, linkedin or other social media platform.

  2. An AI that use this API with other data/APIs to suggest you your next investment.

  3. If you are a finance person then you can use it in your news letter.

Why Choose my API?

  • Real-time Data: This API provides up-to-date information on open IPOs and NFOs, ensuring you never miss an opportunity.

  • Easy to Use: With a simple and intuitive RESTful API, integrating ISMA into your applications is a breeze.

  • Comprehensive Data: We provide detailed information for both IPOs and NFOs, giving you all the data you need for your analysis.

Getting Started

Getting started with ISMA is incredibly simple. Here's a quick example of how to fetch the currently open IPOs using a simple curl command:

curl --location 'https://indian-stock-market-api1.p.rapidapi.com/get-open-ipo'
Enter fullscreen mode Exit fullscreen mode

This will return a JSON response with a list of all open IPOs, as shown in the example below:

[
  {
    "symbol": "EXAMPLE",
    "companyName": "Example Company Ltd.",
    "isSme": false,
    "bidStartTimestamp": "2025-07-01T10:00:00+05:30",
    "bidEndTimestamp": "2025-07-05T17:00:00+05:30",
    "minPrice": 100.0,
    "maxPrice": 105.0,
    "lotSize": 150,
    "indMinBidQuantity": 150,
    "hniMinBidQuantity": 2100,
    "isin": "INE000X01011",
    "isOpen": true
  }
]
Enter fullscreen mode Exit fullscreen mode

For more detailed information on all the available endpoints and their parameters, please refer to our official documentation.

Check Out Now

Top comments (0)