ipo, new stock calendar
India uses the Indian IPO, New Stock Calendar interface instead of this interface
/new-stock?key=Contact us to get the key&country_id=14
PARAMS
name | Location | type | Required | illustrate |
---|---|---|---|---|
key | query | string | yes | Contact us to get the key |
country_id | query | string | yes | Country ID |
Example Response
json
[
{
"iopListing": "1705363200", // Availability
"company": "Jyoti Cnc Auto Ltd", // Company Name
"exchange": "NSE", // Trading Platform
"ipoValue": "10.0B", // Issued Market Value
"ipoPrice": "315.00-331.00", // Issue Price
"symbol": "JYOTICNC" // Stock code Use this to correspond to the stock data after listing
}
]
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("/new-stock?key=Contact us to get the key&country_id=14")
.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 => '/new-stock?key=Contact us to get the key&country_id=14',
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;