All questions
Q & A Getting Started · August 27, 2026

How do I handle rate limits?

The API returns HTTP 429 when rate limits are exceeded. The response includes Retry-After and X-RateLimit-Reset headers telling you when the limit resets. Implement exponential backoff: wait 1s after first 429, 2s after second, 4s after third, etc. Batch lookups into single requests where the endpoint supports it.

Read the full guide
DomainScan API Quickstart
DomainScan's API gives programmatic access to all 50+ tools including cryptographic hashing (MD5, SHA family, BLAKE2, RIPEMD-160) and password hashing (bcrypt, Argon2). This quickstart covers authentication, making your first call, the full endpoint reference, and code examples in JavaScript, Python, and curl.