VIN Decoder API
============
VIN Decoder is a simple tool for decoding vehicle identification numbers. It returns the make, model, and more of the vehicle.
![Build Status](https://img.shields.io/badge/build-passing-green)
![Code Climate](https://img.shields.io/badge/maintainability-B-purple)
![Prod Ready](https://img.shields.io/badge/production-ready-blue)
This is a Python API Wrapper for the [VIN Decoder API](https://apiverve.com/marketplace/api/vindecoder)
---
## Installation
pip install apiverve-vindecoder
---
## Configuration
Before using the vindecoder API client, you have to setup your account and obtain your API Key.
You can get it by signing up at [https://apiverve.com](https://apiverve.com)
---
## Usage
The VIN Decoder API documentation is found here: [https://docs.apiverve.com/api/vindecoder](https://docs.apiverve.com/api/vindecoder).
You can find parameters, example responses, and status codes documented here.
### Setup
```
# Import the client module
from apiverve_vindecoder.apiClient import VindecoderAPIClient
# Initialize the client with your APIVerve API key
api = VindecoderAPIClient("[YOUR_API_KEY]")
```
---
### Perform Request
Using the API client, you can perform requests to the API.
###### Define Query
```
query = { "vin": "1HGCM82633A004352" }
```
###### Simple Request
```
# Make a request to the API
result = api.execute(query)
# Print the result
print(result)
```
###### Example Response
```
{
"status": "ok",
"error": null,
"data": {
"make": "HONDA",
"manufacturer": "AMERICAN HONDA MOTOR CO., INC.",
"model": "Accord",
"options": {
"abs": "",
"activesafetysysnote": "",
"adaptivecruisecontrol": "",
"adaptivedrivingbeam": "",
"adaptiveheadlights": "",
"additionalerrortext": "",
"airbagloccurtain": "1st and 2nd Rows",
"airbaglocfront": "1st Row (Driver and Passenger)",
"airbaglocknee": "",
"airbaglocseatcushion": "",
"airbaglocside": "1st Row (Driver and Passenger)",
"automaticpedestrianalertingsound": "",
"autoreversesystem": "",
"axleconfiguration": "",
"axles": "",
"baseprice": "",
"batterya": "",
"batterya_to": "",
"batterycells": "",
"batteryinfo": "",
"batterykwh": "",
"batterykwh_to": "",
"batterymodules": "",
"batterypacks": "",
"batterytype": "",
"batteryv": "",
"batteryv_to": "",
"bedlengthin": "",
"bedtype": "Not Applicable",
"blindspotintervention": "",
"blindspotmon": "",
"bodycabtype": "Not Applicable",
"bodyclass": "Coupe",
"brakesystemdesc": "",
"brakesystemtype": "",
"busfloorconfigtype": "Not Applicable",
"buslength": "",
"bustype": "Not Applicable",
"can_aacn": "",
"cashforclunkers": "",
"chargerlevel": "",
"chargerpowerkw": "",
"cib": "",
"coolingtype": "",
"curbweightlb": "",
"custommotorcycletype": "Not Applicable",
"daytimerunninglight": "",
"destinationmarket": "",
"displacementcc": "2998.832712",
"displacementci": "183",
"displacementl": "2.998832712",
"doors": "2",
"driverassist": "",
"drivetype": "",
"dynamicbrakesupport": "",
"edr": "",
"electrificationlevel": "",
"engineconfiguration": "V-Shaped",
"enginecycles": "",
"enginecylinders": "6",
"enginehp": "240",
"enginehp_to": "",
"enginekw": "",
"enginemanufacturer": "",
"enginemodel": "J30A4",
"entertainmentsystem": "",
"errorcode": "0",
"errortext": "0 - VIN decoded clean. Check Digit (9th position) is correct",
"esc": "",
"evdriveunit": "",
"forwardcollisionwarning": "",
"fuelinjectiontype": "",
"fueltypeprimary": "Gasoline",
"fueltypesecondary": "",
"gcwr": "",
"gcwr_to": "",
"gvwr": "Class 1C: 4,001 - 5,000 lb (1,814 - 2,268 kg)",
"gvwr_to": "Class 1: 6,000 lb or less (2,722 kg or less)",
"keylessignition": "",
"lanecenteringassistance": "",
"lanedeparturewarning": "",
"lanekeepsystem": "",
"lowerbeamheadlamplightsource": "",
"makeid": "474",
"manufacturerid": "988",
"modelid": "1861",
"motorcyclechassistype": "Not Applicable",
"motorcyclesuspensiontype": "Not Applicable",
"ncsabodytype": "",
"ncsamake": "",
"ncsamapexcapprovedby": "",
"ncsamapexcapprovedon": "",
"ncsamappingexception": "",
"ncsamodel": "",
"ncsanote": "",
"nonlanduse": "",
"note": "",
"otherbusinfo": "",
"otherengineinfo": "",
"othermotorcycleinfo": "",
"otherrestraintsysteminfo": "Seat Belt (Rr center position)",
"othertrailerinfo": "",
"parkassist": "",
"pedestrianautomaticemergencybraking": "",
"plantcity": "MARYSVILLE",
"plantcompanyname": "",
"plantcountry": "UNITED STATES (USA)",
"plantstate": "OHIO",
"possiblevalues": "",
"pretensioner": "",
"rearautomaticemergencybraking": "",
"rearcrosstrafficalert": "",
"rearvisibilitysystem": "",
"saeautomationlevel": "",
"saeautomationlevel_to": "",
"seatbeltsall": "Manual",
"seatrows": "",
"seats": "",
"semiautomaticheadlampbeamswitching": "",
"series": "",
"series2": "",
"steeringlocation": "",
"suggestedvin": "",
"topspeedmph": "",
"tpms": "",
"trackwidth": "",
"tractioncontrol": "",
"trailerbodytype": "Not Applicable",
"trailerlength": "",
"trailertype": "Not Applicable",
"transmissionspeeds": "5",
"transmissionstyle": "Automatic",
"trim": "EX-V6",
"trim2": "",
"turbo": "",
"valvetraindesign": "Single Overhead Cam (SOHC)",
"vehicledescriptor": "1HGCM826*3A",
"vehicletype": "PASSENGER CAR",
"wheelbaselong": "",
"wheelbaseshort": "",
"wheelbasetype": "",
"wheels": "",
"wheelsizefront": "",
"wheelsizerear": "",
"windows": ""
},
"trim": "EX-V6",
"vin": "1HGCM82633A004352",
"year": "2003"
},
"code": 200
}
```
---
## Customer Support
Need any assistance? [Get in touch with Customer Support](https://apiverve.com/contact).
---
## Updates
Stay up to date by following [@apiverveHQ](https://twitter.com/apiverveHQ) on Twitter.
---
## Legal
All usage of the APIVerve website, API, and services is subject to the [APIVerve Terms of Service](https://apiverve.com/terms) and all legal documents and agreements.
---
## License
Licensed under the The MIT License (MIT)
Copyright (©) 2024 APIVerve, and Evlar LLC
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Raw data
{
"_id": null,
"home_page": null,
"name": "apiverve-vindecoder",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.12",
"maintainer_email": null,
"keywords": "vin decoder, vin decoder api, vin decoder tool, vin decoder software, vin decoder service",
"author": null,
"author_email": "APIVerve <hello@apiverve.com>",
"download_url": "https://files.pythonhosted.org/packages/b8/2b/7bea088a6abaf496f115960b70aca99850793ba9bf491e8e31f6b9cd17db/apiverve_vindecoder-1.1.5.tar.gz",
"platform": null,
"description": "VIN Decoder API\r\n============\r\n\r\nVIN Decoder is a simple tool for decoding vehicle identification numbers. It returns the make, model, and more of the vehicle.\r\n\r\n![Build Status](https://img.shields.io/badge/build-passing-green)\r\n![Code Climate](https://img.shields.io/badge/maintainability-B-purple)\r\n![Prod Ready](https://img.shields.io/badge/production-ready-blue)\r\n\r\nThis is a Python API Wrapper for the [VIN Decoder API](https://apiverve.com/marketplace/api/vindecoder)\r\n\r\n---\r\n\r\n## Installation\r\n\tpip install apiverve-vindecoder\r\n\r\n---\r\n\r\n## Configuration\r\n\r\nBefore using the vindecoder API client, you have to setup your account and obtain your API Key. \r\nYou can get it by signing up at [https://apiverve.com](https://apiverve.com)\r\n\r\n---\r\n\r\n## Usage\r\n\r\nThe VIN Decoder API documentation is found here: [https://docs.apiverve.com/api/vindecoder](https://docs.apiverve.com/api/vindecoder). \r\nYou can find parameters, example responses, and status codes documented here.\r\n\r\n### Setup\r\n\r\n```\r\n# Import the client module\r\nfrom apiverve_vindecoder.apiClient import VindecoderAPIClient\r\n\r\n# Initialize the client with your APIVerve API key\r\napi = VindecoderAPIClient(\"[YOUR_API_KEY]\")\r\n```\r\n\r\n---\r\n\r\n\r\n### Perform Request\r\nUsing the API client, you can perform requests to the API.\r\n\r\n###### Define Query\r\n\r\n```\r\nquery = { \"vin\": \"1HGCM82633A004352\" }\r\n```\r\n\r\n###### Simple Request\r\n\r\n```\r\n# Make a request to the API\r\nresult = api.execute(query)\r\n\r\n# Print the result\r\nprint(result)\r\n```\r\n\r\n###### Example Response\r\n\r\n```\r\n{\r\n \"status\": \"ok\",\r\n \"error\": null,\r\n \"data\": {\r\n \"make\": \"HONDA\",\r\n \"manufacturer\": \"AMERICAN HONDA MOTOR CO., INC.\",\r\n \"model\": \"Accord\",\r\n \"options\": {\r\n \"abs\": \"\",\r\n \"activesafetysysnote\": \"\",\r\n \"adaptivecruisecontrol\": \"\",\r\n \"adaptivedrivingbeam\": \"\",\r\n \"adaptiveheadlights\": \"\",\r\n \"additionalerrortext\": \"\",\r\n \"airbagloccurtain\": \"1st and 2nd Rows\",\r\n \"airbaglocfront\": \"1st Row (Driver and Passenger)\",\r\n \"airbaglocknee\": \"\",\r\n \"airbaglocseatcushion\": \"\",\r\n \"airbaglocside\": \"1st Row (Driver and Passenger)\",\r\n \"automaticpedestrianalertingsound\": \"\",\r\n \"autoreversesystem\": \"\",\r\n \"axleconfiguration\": \"\",\r\n \"axles\": \"\",\r\n \"baseprice\": \"\",\r\n \"batterya\": \"\",\r\n \"batterya_to\": \"\",\r\n \"batterycells\": \"\",\r\n \"batteryinfo\": \"\",\r\n \"batterykwh\": \"\",\r\n \"batterykwh_to\": \"\",\r\n \"batterymodules\": \"\",\r\n \"batterypacks\": \"\",\r\n \"batterytype\": \"\",\r\n \"batteryv\": \"\",\r\n \"batteryv_to\": \"\",\r\n \"bedlengthin\": \"\",\r\n \"bedtype\": \"Not Applicable\",\r\n \"blindspotintervention\": \"\",\r\n \"blindspotmon\": \"\",\r\n \"bodycabtype\": \"Not Applicable\",\r\n \"bodyclass\": \"Coupe\",\r\n \"brakesystemdesc\": \"\",\r\n \"brakesystemtype\": \"\",\r\n \"busfloorconfigtype\": \"Not Applicable\",\r\n \"buslength\": \"\",\r\n \"bustype\": \"Not Applicable\",\r\n \"can_aacn\": \"\",\r\n \"cashforclunkers\": \"\",\r\n \"chargerlevel\": \"\",\r\n \"chargerpowerkw\": \"\",\r\n \"cib\": \"\",\r\n \"coolingtype\": \"\",\r\n \"curbweightlb\": \"\",\r\n \"custommotorcycletype\": \"Not Applicable\",\r\n \"daytimerunninglight\": \"\",\r\n \"destinationmarket\": \"\",\r\n \"displacementcc\": \"2998.832712\",\r\n \"displacementci\": \"183\",\r\n \"displacementl\": \"2.998832712\",\r\n \"doors\": \"2\",\r\n \"driverassist\": \"\",\r\n \"drivetype\": \"\",\r\n \"dynamicbrakesupport\": \"\",\r\n \"edr\": \"\",\r\n \"electrificationlevel\": \"\",\r\n \"engineconfiguration\": \"V-Shaped\",\r\n \"enginecycles\": \"\",\r\n \"enginecylinders\": \"6\",\r\n \"enginehp\": \"240\",\r\n \"enginehp_to\": \"\",\r\n \"enginekw\": \"\",\r\n \"enginemanufacturer\": \"\",\r\n \"enginemodel\": \"J30A4\",\r\n \"entertainmentsystem\": \"\",\r\n \"errorcode\": \"0\",\r\n \"errortext\": \"0 - VIN decoded clean. Check Digit (9th position) is correct\",\r\n \"esc\": \"\",\r\n \"evdriveunit\": \"\",\r\n \"forwardcollisionwarning\": \"\",\r\n \"fuelinjectiontype\": \"\",\r\n \"fueltypeprimary\": \"Gasoline\",\r\n \"fueltypesecondary\": \"\",\r\n \"gcwr\": \"\",\r\n \"gcwr_to\": \"\",\r\n \"gvwr\": \"Class 1C: 4,001 - 5,000 lb (1,814 - 2,268 kg)\",\r\n \"gvwr_to\": \"Class 1: 6,000 lb or less (2,722 kg or less)\",\r\n \"keylessignition\": \"\",\r\n \"lanecenteringassistance\": \"\",\r\n \"lanedeparturewarning\": \"\",\r\n \"lanekeepsystem\": \"\",\r\n \"lowerbeamheadlamplightsource\": \"\",\r\n \"makeid\": \"474\",\r\n \"manufacturerid\": \"988\",\r\n \"modelid\": \"1861\",\r\n \"motorcyclechassistype\": \"Not Applicable\",\r\n \"motorcyclesuspensiontype\": \"Not Applicable\",\r\n \"ncsabodytype\": \"\",\r\n \"ncsamake\": \"\",\r\n \"ncsamapexcapprovedby\": \"\",\r\n \"ncsamapexcapprovedon\": \"\",\r\n \"ncsamappingexception\": \"\",\r\n \"ncsamodel\": \"\",\r\n \"ncsanote\": \"\",\r\n \"nonlanduse\": \"\",\r\n \"note\": \"\",\r\n \"otherbusinfo\": \"\",\r\n \"otherengineinfo\": \"\",\r\n \"othermotorcycleinfo\": \"\",\r\n \"otherrestraintsysteminfo\": \"Seat Belt (Rr center position)\",\r\n \"othertrailerinfo\": \"\",\r\n \"parkassist\": \"\",\r\n \"pedestrianautomaticemergencybraking\": \"\",\r\n \"plantcity\": \"MARYSVILLE\",\r\n \"plantcompanyname\": \"\",\r\n \"plantcountry\": \"UNITED STATES (USA)\",\r\n \"plantstate\": \"OHIO\",\r\n \"possiblevalues\": \"\",\r\n \"pretensioner\": \"\",\r\n \"rearautomaticemergencybraking\": \"\",\r\n \"rearcrosstrafficalert\": \"\",\r\n \"rearvisibilitysystem\": \"\",\r\n \"saeautomationlevel\": \"\",\r\n \"saeautomationlevel_to\": \"\",\r\n \"seatbeltsall\": \"Manual\",\r\n \"seatrows\": \"\",\r\n \"seats\": \"\",\r\n \"semiautomaticheadlampbeamswitching\": \"\",\r\n \"series\": \"\",\r\n \"series2\": \"\",\r\n \"steeringlocation\": \"\",\r\n \"suggestedvin\": \"\",\r\n \"topspeedmph\": \"\",\r\n \"tpms\": \"\",\r\n \"trackwidth\": \"\",\r\n \"tractioncontrol\": \"\",\r\n \"trailerbodytype\": \"Not Applicable\",\r\n \"trailerlength\": \"\",\r\n \"trailertype\": \"Not Applicable\",\r\n \"transmissionspeeds\": \"5\",\r\n \"transmissionstyle\": \"Automatic\",\r\n \"trim\": \"EX-V6\",\r\n \"trim2\": \"\",\r\n \"turbo\": \"\",\r\n \"valvetraindesign\": \"Single Overhead Cam (SOHC)\",\r\n \"vehicledescriptor\": \"1HGCM826*3A\",\r\n \"vehicletype\": \"PASSENGER CAR\",\r\n \"wheelbaselong\": \"\",\r\n \"wheelbaseshort\": \"\",\r\n \"wheelbasetype\": \"\",\r\n \"wheels\": \"\",\r\n \"wheelsizefront\": \"\",\r\n \"wheelsizerear\": \"\",\r\n \"windows\": \"\"\r\n },\r\n \"trim\": \"EX-V6\",\r\n \"vin\": \"1HGCM82633A004352\",\r\n \"year\": \"2003\"\r\n },\r\n \"code\": 200\r\n}\r\n```\r\n\r\n---\r\n\r\n## Customer Support\r\n\r\nNeed any assistance? [Get in touch with Customer Support](https://apiverve.com/contact).\r\n\r\n---\r\n\r\n## Updates\r\nStay up to date by following [@apiverveHQ](https://twitter.com/apiverveHQ) on Twitter.\r\n\r\n---\r\n\r\n## Legal\r\n\r\nAll usage of the APIVerve website, API, and services is subject to the [APIVerve Terms of Service](https://apiverve.com/terms) and all legal documents and agreements.\r\n\r\n---\r\n\r\n## License\r\nLicensed under the The MIT License (MIT)\r\n\r\nCopyright (©) 2024 APIVerve, and Evlar LLC\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n",
"bugtrack_url": null,
"license": null,
"summary": "VIN Decoder is a simple tool for decoding vehicle identification numbers. It returns the make, model, and more of the vehicle.",
"version": "1.1.5",
"project_urls": {
"Documentation": "https://docs.apiverve.com/api/vindecoder?utm_source=pypi",
"Homepage": "https://apiverve.com?utm_source=pypi",
"Repository": "https://github.com/apiverve/vindecoder.Python-API",
"Twitter": "https://twitter.com/apivervehq"
},
"split_keywords": [
"vin decoder",
" vin decoder api",
" vin decoder tool",
" vin decoder software",
" vin decoder service"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "879e83f2a28467f98a00f7ce3f9c9f3afd8d20f7ef1190e501c9115ab186c57c",
"md5": "57a3452b00a712587d4327db338da590",
"sha256": "1e200395687585c4e825bc7b5ecef4655f462305e253c4de8b2cadb3680f1369"
},
"downloads": -1,
"filename": "apiverve_vindecoder-1.1.5-py3-none-any.whl",
"has_sig": false,
"md5_digest": "57a3452b00a712587d4327db338da590",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.12",
"size": 8630,
"upload_time": "2024-09-21T07:08:56",
"upload_time_iso_8601": "2024-09-21T07:08:56.428582Z",
"url": "https://files.pythonhosted.org/packages/87/9e/83f2a28467f98a00f7ce3f9c9f3afd8d20f7ef1190e501c9115ab186c57c/apiverve_vindecoder-1.1.5-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b82b7bea088a6abaf496f115960b70aca99850793ba9bf491e8e31f6b9cd17db",
"md5": "59ed27b352576f217fb9d1bbc6e2d403",
"sha256": "c47a385fce026583cb3861c8d7ce231849f56bf83830531805ac2c367ade89cd"
},
"downloads": -1,
"filename": "apiverve_vindecoder-1.1.5.tar.gz",
"has_sig": false,
"md5_digest": "59ed27b352576f217fb9d1bbc6e2d403",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.12",
"size": 9771,
"upload_time": "2024-09-21T07:08:57",
"upload_time_iso_8601": "2024-09-21T07:08:57.315089Z",
"url": "https://files.pythonhosted.org/packages/b8/2b/7bea088a6abaf496f115960b70aca99850793ba9bf491e8e31f6b9cd17db/apiverve_vindecoder-1.1.5.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-09-21 07:08:57",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "apiverve",
"github_project": "vindecoder.Python-API",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "apiverve-vindecoder"
}