Call Limits
To ensure the availability and security of Polyv services and prevent malicious attacks on Polyv servers, Polyv server-side imposes restrictions on call frequency. For the entire Polyv API domain api.polyv.net, there is a limit of no more than 500 requests per 10 seconds per single IP. Access exceeding this request frequency limit will be blocked for 5 minutes. When integrating API calls on the B-side, avoid exceeding the limit conditions and calling the API interface too frequently, which could affect normal services.
It is strongly recommended that the B-side adopt the following integration strategy:

All requests should be forwarded to the Polyv server through the B-side server, rather than directly accessing the Polyv server from the B-side client. The B-side server should integrate caching frameworks such as Redis or Memcache. Request results should be retrieved from the cache as much as possible to reduce call frequency. The logic for tracking call frequency can also be encapsulated within the Redis caching framework to facilitate business logic processing.
