https://github.com/teslahunt/tesla-specifications
Detailed technical information related to Tesla vehicles.
https://github.com/teslahunt/tesla-specifications
tesla tesla-api teslamotors
Last synced: 5 months ago
JSON representation
Detailed technical information related to Tesla vehicles.
- Host: GitHub
- URL: https://github.com/teslahunt/tesla-specifications
- Owner: teslahunt
- License: mit
- Created: 2021-12-25T18:38:54.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-09-06T12:57:21.000Z (10 months ago)
- Last Synced: 2025-09-06T14:40:34.344Z (10 months ago)
- Topics: tesla, tesla-api, teslamotors
- Language: JavaScript
- Homepage:
- Size: 181 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README

[](https://coveralls.io/github/teslahunt/tesla-specifications)
[](https://www.npmjs.org/package/tesla-specifications)
> Detailed technical information related to Tesla vehicles.
All the specifications are normalized into:
- acceleration: 0-100 km/h in seconds.
- top speed: km/h.
- range: kms in WLTP cycle.
## Install
```bash
$ npm install tesla-specifications --save
```
## Usage
The data is based in Tesla official numbers taking into the chassis and the wheel size:
```js
const teslaSpecs = require('tesla-specifications')
const specs = teslaSpecs({ optionCodes: ['MT303'], modelLetter: '3' })
console.log(specs)
// {
// acceleration: '4.6 s',
// curbWeight: '1704 kg',
// dimensions: '4720 mm L x 1850 mm W x 1441 mm H',
// dragCoefficient: '0.219 Cd',
// rangeWLTP: '560 km',
// topSpeed: '233 km/h',
// wheelbase: '2875 mm',
// }
```
## License
**tesla-specifications** © [Tesla Hunt](https://teslahunt.io), Released under the [MIT](https://github.com/teslahunt/specifications/blob/master/LICENSE.md) License.
Authored and maintained by [Tesla Hunt](https://teslahunt.io) with help from [contributors](https://github.com/teslahunt/specifications/contributors).
> [teslahunt.io](https://teslahunt.io) · GitHub [teslahunt](https://github.com/teslahunt) · Twitter [@teslahuntio](https://twitter.com/teslahuntio)