HTTP Requests
Reqon handles HTTP requests with built-in support for pagination, retries, rate limiting, and incremental sync.
Pagination
Reqon provides built-in support for the three most common pagination strategies: offset-based, page number-based, and cursor-based.
Retry strategies
Reqon provides built-in retry handling for transient failures with configurable backoff strategies.
Incremental sync
Incremental sync lets you fetch only what's changed since the last run, reducing API calls and keeping your data current.
Rate limiting
Reqon includes an adaptive rate limiter that learns from API responses and respects standard rate limit headers.
Circuit breaker
The circuit breaker pattern prevents cascading failures when an API is having problems. Reqon includes a built-in circuit breaker that trips when failures pile up and fails fast until the API recovers.