[Solved] What are the limitations of http functions (GET)?

Is there any limitation in number of requests per year, month, day or hour? or anything else i need to watch out for? i guess i’m going to hit several requests per day per product and for each request per day per product i’m going to query each productvariant, so there would be around 500 requests per day approx. is this a) allowed and b) are there any limitations?

System function limits and quotas:

A safe limit is about 1000 requests every minute, with a cooldown of 2 minutes in case of traffic going over the limit.

Basically it is safe to use with 250 requests per minute (functions, web methods) and 250 data operations (queries, inserts), etc. We don’t advise going over 250 operations per minute, yet the system will probably support 1000 per minute burst. If the limit is exceeded it will result in a 502 http error and there will be a 1-2 minute cooldown.

Thx Yisrael