Skip to main content
Launchpad Trade API rate limits
Rate limits protect the API from excessive load and ensure fair usage across all users. Limits are applied per API key.

Default Limits

CategoryEndpointsLimit
Tradingbuy, sell (instant and delayed)No limit
Token Creationcreate-tokenNo limit
Token Managementclaim-creator-fees, claim-cashback, update-fee-shares, transfer, revoke60 requests / minute
All other endpointswallets, funding, utilities, health60 requests / minute
Trading and token creation endpoints are not rate limited — you can execute as many transactions as needed.

Rate Limit Response

When you exceed the limit, the API returns a 429 status code:
{
  "success": false,
  "error": {
    "code": "RATE_LIMIT",
    "message": "Rate limit exceeded"
  }
}

Best Practices

PracticeWhy
Batch requestsUse arrays (e.g., 100 wallets in one balance call) instead of individual calls
Cache read responsesAvoid polling the same data more than needed
Back off on 429Wait before retrying — exponential backoff works well
Monitor your usageTrack your request count to stay within limits
A single balance request can query up to 100 wallets at once. Batching is the most effective way to stay within limits.

Need Higher Limits?

If the default limits do not fit your use case, reach out to the team. Custom limits are available on a case-by-case basis.

Contact Us

Request custom rate limits or discuss your specific requirements

What’s Next?

Error Codes

Full reference of all API error codes

Best Practices

Tips for reliable API integration