Is there a limit on making calls to WordPress.org API’s?

I am writing a plugin which makes calls to https://api.wordpress.org/plugins/info/1.0/{slug}.json

Is there a limit on making calls to WordPress.org API’s? For example once per hour or every 10 minutes etc.
Read more – https://codex.wordpress.org/WordPress.org_API#Plugins

1
1

I have no idea if WP API has limits, but, you should always cache your requests every time you deal with a third party API access. it is a good practice to cache the response for an hour or whatever, it will help optimizing the site which will use your plugin, thus it loads faster due to cached responses.

I suggest you use Transients API « WordPress Codex

Leave a Comment