Releases: smartcar/python-sdk
Releases · smartcar/python-sdk
v6.19.1
v6.19.0
6.19.0 (2025-11-18)
Release Notes
New Features
API V3 Endpoints
This release introduces support for Smartcar API v3 with the following new endpoints:
smartcar.get_vehicle(access_token, vehicle_id)
Retrieves information for a specific vehicle using Smartcar API v3.
Arguments:
access_token(String, required): A valid access token for the vehiclevehicle_id(String, required): The unique identifier of the vehicle to retrieve
Returns:
v3.Response: A dictionary with keysbodyandheaders
Vehicle.get_signal(signal_code)
Retrieves a specific signal for the vehicle using Smartcar API v3.
Arguments:
signal_code(String, required): The code of the signal to retrieve
Returns:
v3.Response: A dictionary with keysbodyandheaders
Vehicle.get_signals()
Retrieves all available signals for the vehicle using Smartcar API v3.
Arguments:
- None
Returns:
v3.Response: A dictionary with keysbodyandheaders
v3.Response Type
A new response type has been introduced for API v3 endpoints:
v3.Response: A dictionary containing:
body: The response data from the APIheaders: The HTTP response headers
This standardized response format provides consistent access to both the response data and metadata across all v3 endpoints.