Rate Limit Tiers
The AgentPowers API uses per-IP rate limiting to ensure fair usage and protect against abuse.Handling 429 Responses
When you exceed the rate limit, the API returns a429 Too Many Requests response:
Recommended Strategy
- Respect
Retry-After— wait the specified number of seconds before retrying - Exponential backoff — if
Retry-Afteris not present, use exponential backoff starting at 1 second - Cache responses — cache search results and skill details to reduce request volume
- Batch operations — for bulk installs or updates, add a small delay (200-500ms) between requests
Example: Python with Retry
Notes
- Rate limits are per IP address, not per user
- The CLI (
apcommand) includes built-in retry logic for rate-limited requests - The MCP server plugin handles rate limits transparently
- If you need higher limits for integration purposes, contact us
Need Help?
Email Support
Reach us at support@agentpowers.ai for account issues, billing questions, or technical help.
Discord Community
Join the AgentPowers Discord to get help from the team and other creators in real time.