How can I find out the remaining Soundcloud API?

I work with Sound-Cloud API in my application, for this I create some APIs. He worked well yesterday, but now his show

error: string (47) "The requested URL responded with HTTP code 429.

I checked the Sound-Cloud documentation and found the HTTP code 429 related to Too many requests .

Here is my concern: "How can I find out the number of my requests and the repeated request."

+7
php soundcloud
source share
1 answer

Starting July 1, all requests that result in access to a playable stream are subject to a limit of 15,000 requests for each 24-hour time window. Link

Note

There is no way to calculate how many queries are left or used.

Decision

  • Do you need to check how many API requests you have on one page? Reduce them as much as possible.

  • You can create multiple API keys and use them randomly.

  • You can cache your requests.

+4
source share

All Articles