What are the BunnyBuild SDKs?
The BunnyBuild SDKs are client libraries that wrap the API. They provide:- Simple interface —
client.email.check()andclient.ip.check()plus convenience methods - Retries and backoff — Automatic retries on network errors and rate limits
- Typed errors — Exceptions for authentication, validation, rate limit, etc.
- Input validation — Client-side checks before calling the API
Benefits of using our SDKs
- Less boilerplate: No need to manage headers, JSON, or retry logic yourself
- Type safety: Full types in TypeScript, Python, Java, and Go
- Error handling: Typed exceptions (e.g.
RateLimitError,ValidationError) - Consistent options: Same base URL, timeout, retries across languages
Available SDKs
- Backend
Usage examples
FAQ
Where is the SDK source code?
Where is the SDK source code?
Each SDK lives in its own folder in the BunnyBuild repo:
bunnybuild-python, bunnybuild-typescript, bunnybuild-java, bunnybuild-go. You can install from the package manager or build from source.Do SDKs support retries and rate limits?
Do SDKs support retries and rate limits?
Yes. All SDKs retry on network errors and on 429/5xx responses with exponential backoff, and they parse rate limit headers. You can also set a callback for rate limit updates.
What if my language is not supported?
What if my language is not supported?
You can call the API directly with HTTP. See the API Reference for endpoints, headers, and request/response formats.