☰
Login
Signup
Home
›
.Net API client
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Register
Categories
Recent Discussions
Activity
Categories
13.8K
All Categories
0
Incidents
154
Node JS client
40
Go client
793
.Net API client
378
Kite Publisher
537
.Net / VBA / Excel (3rd party)
457
Algorithms and Strategies
993
Java client
1.1K
API clients
404
PHP client
4K
Python client
346
Mobile and Desktop apps
1.4K
Market data (WebSockets)
3.3K
General
In this Discussion
February 2018
arjunender
February 2018
sujith
Error while Fetching GetQuote data
arjunender
February 2018
in
.Net API client
Hi,
If i fetch data one after another using
GetQuote
first request is working fine, but second one is giving error
Ex:
Dictionary quote1 = kite.GetQuote(InstrumentId: new string[] { "NFO:SUNPHARMA18FEBFUT"});
Dictionary quote2 = kite.GetQuote(InstrumentId: new string[] { "NFO:LUPIN18FEBFUT" });
Error:
429 {"status": "error", "message": "Too many requests", "error_type": "NetworkException"}
Thanks
sujith
February 2018
@arjunender
,
You can make only one request per second to quote API. You need to send the request for all instruments in one call.
arjunender
February 2018
edited February 2018
Fine
Will data be returned the same sequence which we requested
Previous kite version was working fine
Latest version only giving error
sujith
February 2018
You are getting rate limited, the system is thinking you are abusing it. Hence you are getting this error.
Hence make one request for all the instruments.
Sign In
or
Register
to comment.
You can make only one request per second to quote API. You need to send the request for all instruments in one call.
Will data be returned the same sequence which we requested
Previous kite version was working fine
Latest version only giving error
Hence make one request for all the instruments.