From 10 Years of Transaction Data to a Binding Real-Time Price Prediction

How CarTV uses AI to reduce valuation from 24 hours to seconds — and turns it into a binding price guarantee. Based on 10 years of transaction data, LightGBM, and a confidence interval that turns prediction into price.
Unternehmensgröße
Mid-sized Company
Eingesetzte KI Fähigkeiten
Herausforderung

When Valuation Slows Down the Process

In many industries, valuation is a bottleneck. Whether used machinery, real estate, IT assets, or insurance claims: before a process can move forward, a value must be determined. And that determination takes time. Hours. Days. Sometimes weeks. Because it relies on human judgment, on supply and demand, or on manual research.

CarTV operates one of Europe's largest marketplaces for damaged vehicle assessment. Thousands of orders pass through the platform daily. 10 years of transaction data are available: offer prices, realized prices, object characteristics, buyer behavior. Yet every single valuation still took at least 24 hours. Because the price was determined the traditional way: dealers had to bid first.

During major events such as hailstorms or floods, thousands of cases arrive simultaneously. 24 hours per case is not acceptable. At the same time, competitors experimenting with approximate estimates are increasing the pressure. Their problem: an estimate is not a price. And a prediction without commitment is not a differentiator.

CarTV commissioned PLAN D with a concrete task: develop an AI-powered price prediction precise enough for CarTV to issue a binding price guarantee. 24 hours should become seconds. And a prediction should become a legally binding value.

Herausforderung

Heading

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

Lösung

From Data Treasure to Price Guarantee

Understanding the data

The starting point was not modeling but understanding. 10 years of transaction data, with thousands of orders per day: offer prices, realized sale prices, object characteristics, damage profiles, market data. A data treasure that had never been systematically used for predictions.

PLAN D analyzed the data inventory, identified quality issues, and cleansed the data together with CarTV's domain team. Implausible values, outliers, and inconsistent entries were removed. Through feature engineering, raw data was transformed into meaningful features: combinations and transformations of input variables that enable the model to detect patterns invisible in the raw data.

Developing the model

Based on the cleansed and prepared data, PLAN D tested various algorithms. The choice fell on a gradient boosting method based on decision trees. Trees are built sequentially, each one correcting the errors of the previous. The result is a model that trains quickly, predicts efficiently, and delivers interpretable results.

For additional robustness, PLAN D employed ensemble methods: multiple models are combined, their predictions merged through majority vote. Instead of a single opinion, the result is a validated prediction less susceptible to outliers and overfitting.

Confidence interval as a business lever

The real innovation lies not in the model but in its application. The AI system doesn't output a single value but a price corridor: a confidence interval indicating the range within which the actual price falls with high probability. On this basis, the price guarantee can be calculated in an economically sound way.

The financial risk is manageable: not all transactions actually result in a sale. For those that do, CarTV and the insurer bear the differential risk between predicted and actually realized price. A statistical prediction becomes a binding offer that is legally indistinguishable from a market-based price.

No other provider in the market takes this step. Competitors deliver predictions declared as indicative values. CarTV delivers a price. With a guarantee.

Product integration

The trained AI model was packaged as a Docker container and seamlessly integrated into the CarTV systems. Insurers and assessors retrieve the price prediction via an API interface. Additionally, a demonstration interface was built for client presentations, enabling CarTV to transparently explain how the model works.

The entire architecture is designed for independence: the AI model runs on CarTV's own IT infrastructure. No cloud dependency in production.

Ergebnis

Prediction Becomes Price

CarTV now has the first and only AI-based valuation on the market that outputs a binding price. Not an estimate, not an indicative value, but a price guarantee.

The AI model achieves an R² of over 90 percent: over 90 percent of the variance in the price data is explained by the model. The mean absolute percentage error (MAPE) is below 10 percent. Prediction takes seconds instead of 24 hours.

For insurers and assessors, this means: faster case processing, shorter turnaround times, more satisfied customers. For CarTV, it means a unique selling proposition that no competitor offers, and a revenue uplift potential in the millions.

The pattern behind this result is transferable across industries. Wherever companies possess historical transaction data and want to derive binding prices from it, a comparable approach can be implemented: used machinery, real estate, IT assets, commodities. The principle is identical. The data is different.

Zahlen & Fakten

24h → 1 Sec.

Process acceleration of valuation

> 90%

AI model explanatory power (R²)

10 Years

Historical transaction data as training foundation

< 10%

Mean absolute percentage error (MAPE)
Techologie

So haben wir es umgesetzt

LightGBM

Gradient boosting framework optimized for large datasets and high dimensionality. Builds decision trees sequentially, with each tree correcting the errors of the previous one.

Ensemble Methods

Combination of multiple models for more robust predictions. Instead of a single opinion, a majority vote emerges that is less susceptible to outliers.

Feature Engineering

Systematic creation of meaningful features from raw data. Transforms domain knowledge into model input and improves prediction quality.

Data Pipelines

Machine Learning

Containerization

FAQs

An AI model learns the relationships between object characteristics and actually achieved prices from historical transaction data. These include properties such as age, condition, market segment, and historical price development. The model detects patterns hidden in the mass of data and derives a price prediction for new, not yet valued objects.

The quality of the prediction depends on the data foundation: the more historical transactions are available and the more consistent the data is, the more precise the prediction becomes. In this project, 10 years of transaction data with thousands of orders per day were available. This breadth and depth enabled a model precise enough for binding price commitments.

A confidence interval indicates the range within which the actual price falls with a defined probability. Instead of a single value, the model delivers a corridor — for example: "The price falls between 3,200 and 4,100 euros with 90 percent probability."

The advantage over a point estimate: uncertainty becomes visible and manageable. A company can use the confidence interval for risk management, for example by issuing a guarantee for a value at the edge of the interval. This makes the financial risk calculable, and a statistical prediction becomes a binding business instrument.

In most applications, an AI prediction remains an indicative value: useful for decisions but without binding effect. The step to commitment requires a model that is precise enough, and a business model that factors in the residual risk. In individual cases, the deviation between prediction and actual price can lead to a bad deal. At scale, however, such approaches are economically sound because overestimates and underestimates balance out statistically. The combination of a precise model and calculated risk turns predictive analytics into a binding pricing model.

LightGBM is a gradient boosting framework based on decision trees. It builds trees sequentially, with each new tree correcting the errors of the previous one. The method is particularly suitable for structured, tabular data with many features.

For price predictions on transaction data, LightGBM is well suited for several reasons: it processes large datasets efficiently, captures complex nonlinear relationships between features, and delivers interpretable results. Compared to neural networks, LightGBM requires less training data and computational resources and is less prone to overfitting on structured data.

The minimum requirement is historical transaction data with three components: object characteristics (what was valued?), offer prices or estimates (what was expected?), and realized prices (what was actually paid?). Depending on the industry, market data, time series, and external data sources are added.

The real preliminary work lies in data cleansing and feature engineering: removing outliers, resolving inconsistencies, deriving meaningful features from raw data. In most companies, the necessary data already exists. What's missing is not the volume of data but its systematic preparation and use.

The quality of a prediction model is evaluated through statistical metrics that capture different aspects of prediction accuracy. The most important metrics in the context of predictive analytics are R², MAPE, and MAE.

R² (coefficient of determination) indicates what proportion of price variation is explained by the model. An R² of over 90 percent means: the model captures over 90 percent of the systematic price differences. MAPE (Mean Absolute Percentage Error) measures the average percentage deviation between prediction and actual price. MAE (Mean Absolute Error) gives the average absolute deviation in euros. The combination of these metrics provides a differentiated picture: R² measures explanatory power, MAPE measures relative accuracy, and MAE measures the economic relevance of the deviation.

The underlying principle is applicable across industries. Wherever historical transaction data exists and prices are determined based on object characteristics, a comparable model can be built: used machinery, real estate, IT assets, B2B surplus stock, commodities.

The prerequisites are the same in every industry: a sufficient database of historical transactions, structured object characteristics, and a defined valuation process. What changes are the features, the data sources, and the industry-specific particularities. The statistical method and the architecture remain identical. Mid-sized companies that have several years of transaction data already have the foundation for AI-powered price determination.

Integration is achieved by containerizing the trained model as a Docker image. The container runs on the customer's existing IT infrastructure and is accessed via an API interface. Existing systems retrieve the prediction as a service without having to modify their own architecture.

In this project, the AI model was integrated into the CarTV systems. Insurers and assessors use the prediction through the same interface they already know. The advantage of the container architecture: the model can be updated, scaled, and monitored independently of the rest of the application. No cloud dependency in production.

Cases

Mehr KI-Projekte aus der Praxis

PLAN D Logo

700 Members, One AI

How an Association Made AI Document Management Affordable for 700 Members

700+

Member firms with access to AI search
Learn more

Digital Strategy for 1.2 Million Members

Digital Strategy for ADAC Hansa: When the Core Service Loses Relevance

100%

approval from sounding board and leadership
Learn more

360° Customer View for Sales

360° Customer View with AI: Data-Driven Sales for 1.2 Million Customers

2x

Doubling of sales conversion probability
Learn more
PLAN D Logo

From AI Hesitation to an AI Roadmap

AI Strategy for FinTech: How a Scale-Up Built an Investor-Ready AI Roadmap

2

Intensive days AI Ideation Workshop
Learn more

Price Prediction in Seconds

From 10 Years of Transaction Data to a Binding Real-Time Price Prediction

24h → 1 Sec.

Process acceleration of valuation
Learn more
PLAN D Logo

Repair Costs in Seconds

AI Prediction of Repair Costs in Motor Claims Management

93%

Faster claims processing
Learn more
PLAN D Logo

Data Strategy Instead of Data Silos

Data Strategy for Financial Services: From 50 Data Sources to an AI-Ready Lakehouse Platform

6 Months

From assessment to production platform
Learn more
PLAN D Logo

50 Million Euros Through Data

Procurement Optimization in Motor Insurance

~50 Mio. €

Savings per year through AI
Learn more

Expert Knowledge at the Touch of a Button

AI Assistant in Customer Service with RAG System

100

Days from idea to MVP
Learn more

A Digital Future for the Energy Transition

AI-Driven Digital Transformation Strategy: How a Federal Enterprise Modernized Its Operations

7

Months from as-is analysis to roadmap
Learn more
PLAN D Logo

AI Calculates Hail Damage

Hail Damage Calculated in Milliseconds: How AI Helps Insurers Manage Mass Claims

40.000+

hail damage claims processed via the AI system per year
Learn more
PLAN D Logo

Computer Vision in Claims Management

AI Image Recognition in Motor Claims: Damage Assessment in Seconds Instead of Days

93 %

Prediction accuracy in component detection, at assessor level
Learn more

Mit Daten Leben retten

KI in der Medizin: Datenanalyse in der Notfallversorgung

1,3 Stunden

schnellere Behandlung pro Schlaganfall
Learn more

Remote Videobesichtigung von Kfz Schäden

Remote Videobesichtigung von Kfz Schäden einer Versicherungsnehmerin

100.000 Euro

Projektvolumen pro bono
Learn more

Omnikanal im Versicherungsvertrieb

Gemeinsam mehr erreichen: Omnikanal im Versicherungs-Vertrieb

Learn more

Bereit wenn Sie es sind

Zukunft beginnt, wenn menschliche Intelligenz künstliche Intelligenz entwickelt. Der erste Schritt ist nur ein Klick.

Vertrieb kontaktieren
Jetzt bewerben

Zukunft beginnt, wenn menschliche Intelligenz künstliche Intelligenz entwickelt. Der erste Schritt ist nur ein Klick.