Console (UI): https://app.algorythmos.fr
API: https://api.algorythmos.fr
Algorythmos helps teams extract, split, classify, and parse documents using configurable Processors orchestrated in Workflows.
Core concepts
- Processor — An extraction, parsing, splitting, or classification model with versioned configuration.
- Workflow — A directed graph that routes files through processors, decisions, and notifications.
- Job — A single processor or workflow run; exposes run status, logs, and output URIs.
- Evaluation — A benchmark dataset used to measure model performance before publishing.
What do you want to do?
- Extract structured data → /guides/product/extraction/quick-start
- Split multi-page docs → /guides/product/splitting/configuring-a-splitter
- Parse text → /guides/parsing/parse
- Classify docs → /guides/classification/configuring-a-classifier
- Create a workflow → /guides/workflows/create-a-workflow
- Evaluate performance → /guides/evaluation/overview
Quick start (5 minutes)
- Open Studio → Upload and add an invoice PDF.
- Select Extraction → Invoices and review the auto-detected fields.
- Save as a processor named
invoice-extractorand publish the first version.
curl -X POST https://api.algorythmos.fr/extract/upload \
-H "x-api-key: $ALG_KEY" \
-F "file=@/path/to/invoice.pdf"The response returns a file_id. Trigger a processor run with POST https://api.algorythmos.fr/processors/invoice-extractor/runs to validate the JSON output end-to-end.