POST
/
estimations
curl --request POST \
  --url https://api.chargeapi.co/v1/estimations \
  --header 'Content-Type: application/json' \
  --data '{
  "charging_station": "<string>",
  "vehicle": "<string>",
  "soc_current": 50,
  "soc_target": 50,
  "currency": "<string>"
}'
{
  "id": null,
  "object": null,
  "battery_level": null,
  "battery_target_level": null,
  "cost_breakdown": [
    {
      "cost": null,
      "description": null,
      "quantity": null,
      "type": null,
      "unit": null,
      "unit_price": null,
      "tax_percent": null
    }
  ],
  "created": null,
  "currency": null,
  "estimated_duration": null,
  "estimated_energy_kwh": null,
  "estimated_total_cost": null,
  "charging_station": null,
  "valid_until": null,
  "vehicle": null
}

Body

application/json

Response

200
application/json

Returns the newly created Estimation object containing the cost breakdown and duration prediction for the requested parameters.