Skip to main content
Version: 2.2

Rate Limits

Moralis API has rate limit mechanism placed on each of the Moralis API offered. Depending on the plans that you have on your Moralis account, you will have different throughput which will determine how many API calls you can make before getting rate limited.

Avoiding Rate Limits​

In order to avoid rate limitation from the Moralis API, you will need to make sure that the total rate limit cost of your API calls per second should not exceed the given throughout of your chosen plan.

For example, syncNFTContract has rateLimitCost of 25 CUs/call as shown below.

{
"endpoint": "syncNFTContract",
"path": "/nft/{address}/sync",
"price": 5,
"rateLimitCost": 25
}

Therefore, for both free plan and pro plan users, they will be able to call the syncNFTContract API at maximum of, respectively:

  • Free Plan (Throughput: 150 CU/s): 150 CUs/s / 25 CUs/call = 6 calls/s
  • Business Plan (Throughput: 300 CU/s): 300 CUs/s / 25 CUs/call = 12 calls/s

If you surpassed the maximum number of calls per second, you will get rate limited by the Moralis API. In this case, if the rate limits happen too frequently, it is recommended that you upgrade to a higher pricing plan to increase your throughput.