Hi 511 developer team,
I'm building an application to help locals see bus arrival times for the lines they use most. I'm currently calling the StopMonitoring endpoint once per minute (60 times an hour, the current limit) but I'd like to increase that to every 10 seconds or so, which would be 360 an hour instead of 60.
Additionally, a rate limit this strict makes testing hard, if I run my server both in production and development at the same time, I'll hit the limits
I assume this is the most efficient way to get predictions, as including a stop id would mean I would be making a call every minute for each stop I care about, and I care about the stops closest to each user.
Let me know if you have any other questions, and thank you for providing this api!
Jeremy