GET
/
estimations
/
{estimation}
curl --request GET \
  --url https://api.chargeapi.co/v1/estimations/{estimation} \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "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
}

Path Parameters

estimation
string
required

ID of the estimation to retrieve.

Query Parameters

expand
string[]

Specifies related objects to expand (e.g., expand[]=charging_station).

Body

application/json · object

Response

200
application/json

Returns the Estimation object for a valid identifier. Raises an error if the estimation has expired or the ID is invalid.