Can we retrive the stock pricing data using stock trading symbol

smhargude
Can we retrive the stock pricing data using stock trading symbol. Is there any API for the same in PHP
  • rakeshr
    Yes, you can use Quote call API, with the instrument name.
  • smhargude
    Hi Rakesh,
    Is there need daily basis to generate request token to access Kite Connect API's ?
    We are only Retrieve quote and market depth for list of instruments, not doing any kind of trading.
  • sujith
    It is mandatory by the exchange that a trader has to log in manually at least once a day.
  • smhargude
    The flow of accessing Kite Connect API is
    1 - Generate login URL using API Key.
    2 - Browse that URL and Login using credentials.
    3 - After successful login,it will redirected to redirect URL mentioned in app with request token as query string parameter (Request token is valid for couple of minute).
    4 - Using that request token and API secret generate access token (Access token valid for one day).
    5 - Use that access token in subsequent API requests.

    Is there need daily basis to do the above procedure for accessing Kite Connect API's ?
  • rakeshr
    @smhargude
    Is there a need daily basis to do the above procedure for accessing Kite Connect API's?
    Yes, you need to perform this daily whole flow once and then store access_token at your end. And then use the same access_token for all subsciquent requests.
Sign In or Register to comment.