Please contact our commercial team if you are interested in using this functionality.
The predicted cost of an ingested event can be obtained through two primary methods: Solvimon Desk and developers by incorporating a designated query parameter in the API Request during event ingestion.
We will show the cost prediction in both Solvimon Desk and within the API Request for the following meter-data ingest event:
The cost prediction will calculate the contribution of an ingested event for the provided customer (customer_id/customer_reference) and meter(meter_id/meter_reference). The predicted cost of the event is an estimation of the eventual price.
Due to our multi-distributed platform events can be processed in parallel to support high throughput. As a result we can not guarantee 100% accuracy. An unlikely example is two events reaching our platform simultaneously. Both of which would result in the next tier being reached.
In the Desk Events page, users have the ability to access detailed event information by selecting a specific event. When accessing, users are directed to the event processing details page, where a summary of the ingested event is shown, alongside the cost estimation data.

The API docs outline the specific query parameters available for each resource. To include predicted cost data in the response, developers should use the cost_prediction query parameter, setting it to a boolean value true when submitting a meter-data event ingestion request.
When making a POST request to the endpoint /v1/ingest/meter-data?cost_prediction=true with the provided JSON payload, the response will contain an additional element called cost_prediction, structured as follows:
This JSON structure includes the following prediction details:
response: indicating either OK or FAILED.details [OPTIONAL]: an array containing cost predictions per customer, including the amount excluding and including tax, a tax summary, and the applicable periods. For more information on the periods structure, refer to the API docs.Currently, the cost predictions apply only to flat pricing and do not account for tiering or other configurations, such as included volume.
The details object will be absent in the following scenarios:
pricing_type: NONE also known as Not billed.The cost prediction will result in a 0 (zero) quantity when:
The cost_prediction_groups response field is deprecated, and will be replaced by the new cost_prediction structure.
Although the cost prediction is unlikely to fail, it is possible.
If the response status is marked as FAILED, it indicates that either we were unable to calculate the cost for the event, or the calculation exceeded the allowed time limit of 5 seconds. This time constraint is imposed to prioritize the ingestion of the event over the completion of the cost prediction.
There are two options to recover from this scenario:
The second option requires a manual intervention to reprocess the invoice, before re-submitting the event