VIN Decoder Vehicle — Python SDK
Official Python SDK for the VIN Decoder Vehicle API.
Features
- Zero runtime dependencies (stdlib only)
- Python 3.9+
- Typed dataclass models
- All API endpoints supported
Installation
pip install vindecodervehicle
Quick Start
from vindecodervehicle import VinDecoderClient
client = VinDecoderClient.create(user="YOUR_USER", api_key="YOUR_API_KEY")
vehicle = client.decode_vin("WF0GXXGAJ69C71882")
print(vehicle.full_name) # BMW 3 Coupe (E92) 316 i
print(vehicle.make) # BMW
print(vehicle.car_id) # 55565
API Reference
VIN
vehicle = client.decode_vin("WF0GXXGAJ69C71882")
vehicles = client.decode_vin_all("WF0GXXGAJ69C71882")
engines = client.get_engines("WF0GXXGAJ69C71882")
Vehicle by carId
vehicle = client.get_vehicle(55565)
fluids = client.get_fluid_capacities(55565)
parts = client.get_oem_parts(55565)
repairs = client.get_repair_times(55565)
Catalog
brands = client.list_brands()
models = client.list_models("bmw")
variants = client.list_variants("bmw", "3-series")
Error Handling
from vindecodervehicle import (
ApiError,
AuthenticationError,
InvalidArgumentError,
)
try:
vehicle = client.decode_vin("INVALID")
except InvalidArgumentError:
pass
except AuthenticationError:
pass
except ApiError as exc:
print(exc.status_code, exc.response_body)
Links
License
MIT
Release files for vindecodervehicle 1.0.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| vindecodervehicle-1.0.0.tar.gz | 7.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| vindecodervehicle-1.0.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 15.4 kB
Release files / vindecodervehicle-1.0.0.tar.gz
| Download URL | vindecodervehicle-1.0.0.tar.gz |
|---|---|
| Size | 7.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
58566d7579c4dce1efff0c8a1b983cda9204c8dc601abcceb1db14bcf91f9005
|
|
BLAKE2b-256 checksum How to use checksums |
c3f3fa83bbcf2c0ad4b04e83b634a9832f75501cd98c3561380d712c8bebd877
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.12
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.
Transparency logRelease files / vindecodervehicle-1.0.0-py3-none-any.whl
| Download URL | vindecodervehicle-1.0.0-py3-none-any.whl |
|---|---|
| Size | 8.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
33ec85b1c0397b21cb5ca105e92f96b6e9292cd0a2ad9190608a1f6105490445
|
|
BLAKE2b-256 checksum How to use checksums |
120a8f92ab332a59da3a1c1ef946c35f7f25a733936cf824bea6899e1e006d5e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.12
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.
Transparency log