top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

API to get online Ticket Status

+1 vote
460 views

I am going create a page to display ticket status for all theaters. I want to get booked seat list for all theaters which should include IMAX, INOX to local theaters. Is their any APIs present for this?

posted Mar 24, 2016 by Satyabrata Mahapatra

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

I dont think there is any public API for this, however you have to get this from any aggregator (http://in.bookmyshow.com , http://www.ticketplease.com ). You may probably need to contact them and give them an idea of what exactly your website does and also inquire about any Affiliate Program that they might have, may be on revenue sharing basis or something similar.

answer Mar 24, 2016 by Salil Agrawal
Similar Questions
0 votes

I have created a JAVA class exposing native API. I have kept this class in _frameworks/base/core/java/com/myDomain/myPackage/myClass.java_ and for this i have already created JNI C code files and their entries in required make files.

But after building the SDK, it didn't include expected package _com.myDomain.myPackage_.

Is there any specific configuration file(s) where I would have to make entries to include it in Android SDK, or the place is incorrect where currently class files is kept.

+6 votes

Is there any API in CallLog.Calls class to get Operator Name

+2 votes

I am using drop down menu (spinner) and I want know how to get value from drop down menu to a variable if user selects one?
Example : select city=Varanasi,Delhi,Chennai,Erode etc. and if user selects Chennai then store it to a java variable.

   String selectedCity;
   //after selecting from drop down menu
   selectedCity="Chennai";
0 votes

Is there a Java API for getting yarn.scheduler.capacity.maximum-am-resource-percent for a particular queue?

Unfortunately, QueueInfo doesnt seem to contain this info, so something like this wouldnt work:

Configuration conf = new Configuration(...);
Cluster cluster = new Cluster(conf);
QueueInfo queueInfo = cluster.getQueue("default");
Properties p = queueInfo.getProperties(); // This is empty! :(
...