India IPO and new stock calendar
/ipo-india?key=Contact us to get the key
PARAMS
name | Location | type | Required | illustrate |
---|---|---|---|---|
key | query | string | yes | Contact us to get the key |
Example Response
json
[
{
"name": "RULKA ELECTRICALS LTD", // Stock Name
"openDate": 1715788800, // Opening Dates
"closeDate": 1716220800, // Deadline
"issuePriceMin": 223, // Minimum issue price
"issuePriceMax": 235, // Highest issue price
"totalNos": 1123200, // Total Issue
"totalNosBidFor": 24625800, // Total bid
"exchange": "NSE", // Exchanges
"symbol": "RULKA", // Stock Code
"listingDate": 1716508800 // Release Date
}
]
Example Request
java
import java.io.*;
import okhttp3.*;
public class main {
public static void main(String []args) throws IOException{
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse("text/plain");
RequestBody body = RequestBody.create(mediaType, "");
Request request = new Request.Builder()
.url("/ipo-india?key=Contact us to get the key")
.method("GET", body)
.build();
Response response = client.newCall(request).execute();
System.out.println(response.body().string());
}
}
php
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => '/ipo-india?key=Contact us to get the key',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;