Introduction
Reducto applies a set of default parsing configurations to every request. These defaults are designed to cover the most common document types and workflows, so you can start parsing without specifying every parameter in your API calls. By understanding the defaults, you can:- Avoid sending long, repetitive configuration lists with each request
- Decide when to override a setting for your specific use case
- Use parse output as the foundation for extraction, making it a good place to debug issues
Default configurations (Parse)
Basic options
Basic options
Advanced options
Advanced options
Experimental options
Experimental options
Defaults in action
Both of these calls are equivalent — the first sets every default explicitly, while the second relies on built-in defaults.Explicit configuration example
Default configuration example
When to Override Defaults
Most of the time, you can rely on the default configurations. However, use cases and document formats vary widely, here are a few examples:-
Disable page auto-rotation
If you don’t expect scans or skewed content, you can disablerotate_pagesfor a reduction in latency. -
Return figures and tables
Helpful for research papers or scientific documents where charts and illustrations are common. Enablereturn_figure_imagesandreturn_table_images. -
Different languages
Usemultilingualmode forocr_systemfor documents that have non-Germanic languages.
Next Steps
- Learn more about all available parameters in the Parse API Reference.
- Try different configurations interactively in the Studio Playground.
- Continue to Extraction to see how parse output is used as the foundation for structured data.