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?

Quick start (5 minutes)

  1. Open Studio → Upload and add an invoice PDF.
  2. Select Extraction → Invoices and review the auto-detected fields.
  3. Save as a processor named invoice-extractor and 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.