Fetch without babysitting
Cursor, page, and offset pagination. Retries, backoff, rate limits, and circuit breakers are part of the language.
A declarative DSL for fetching, transforming, and validating API data. Pagination, retries, auth, and checkpoints come built in.
npm install reqon1mission SyncCustomers {2 source API {3 auth: bearer,4 base: "https://api.example.com"5 }67 action Fetch {8 get "/customers" {9 paginate: offset(page, 100),10 retry: exponential(3)11 }12 }1314 run Fetch15 }Reqon turns the repetitive parts of API integration into readable declarations. Pipelines stay small enough to review and explicit enough to trust.
Cursor, page, and offset pagination. Retries, backoff, rate limits, and circuit breakers are part of the language.
Map, validate, and branch with readable expressions. The pipeline stays close to the shape of your data.
Durable checkpoints, incremental sync, and execution traces make long-running jobs safe to restart and easy to inspect.