Capability · Cascade
Map any file to your schema, cheapest layer first.
A five-layer, cost-ordered mapping cascade. Each layer runs cheapest-first and stops the moment it resolves a column — so most files never reach the metered AI layer at all.
What you get
Built for regulated workloads
The cascade is the product. Five layers run in strict cost order and short-circuit: as soon as a layer resolves a column with enough confidence, the column is claimed and no later — more expensive — layer sees it. Layers 1–3 are free, deterministic and run in-process; layer 4 (embeddings) is cheap and cached; layer 5 (the LLM) is the only metered step, and it only ever sees the columns the first four layers could not place. In practice most files resolve on the free deterministic layers alone.
Heuristic
Fuzzy
Semantic
LLM, batched
Collision-safe by construction
Try it
A real call, end to end
Send headers plus up to three sample rows. The response maps each column to a field and tells you exactly which layer resolved it — so you can see how little of your data ever reached the AI.
- Layers 1–3 are free and deterministic — no key, no metering, byte-reproducible.
- The LLM is skipped entirely for any column an earlier layer resolves. That short-circuit is the single biggest cost lever in the system.
- Semantic (layer 4) fails soft to OFF when no embedding key is set; the cascade still runs on layers 1–3 and 5.
curl https://api.adaptivmapr.com/v1/match \
-H "Authorization: Bearer $MAPR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"template": "patient_demographics",
"headers": ["MRN", "Given", "Surname", "DOB"],
"sample_rows": [
["A-1002", "Ada", "Lovelace", "1985-12-10"],
["A-1003", "Alan", "Turing", "1912-06-23"]
]
}'{
"mappings": [
{ "header": "MRN", "field": "patient_id", "source": "statistics", "confidence": 0.99 },
{ "header": "Given", "field": "first_name", "source": "heuristic", "confidence": 0.91 },
{ "header": "Surname", "field": "last_name", "source": "fuzzy", "confidence": 0.84 },
{ "header": "DOB", "field": "birth_date", "source": "heuristic", "confidence": 0.88 }
]
}FAQ
Common questions
Ready when you are
Put schema mapping in production — without shipping raw records.
Spin up a key in minutes. Top up a $10 prepaid wallet — every map is a few tokens.