Skip to main content
Follow these practices for reliable, secure integrations.

Rate Limits

  • Handle 429 responses: Implement retry with exponential backoff
  • Monitor usage: Check your dashboard for rate limit status
  • Retry example:

Security

  • Never hardcode keys — use process.env.SCRAPEST_API_KEY
  • Add to .gitignore — never commit keys
  • Use HTTPS — always secure connections

Quick Checklist

  • API key in environment variables
  • Retry logic implemented
  • HTTPS for all endpoints
  • Error handling in place