> ## Documentation Index
> Fetch the complete documentation index at: https://developer.tessie.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Access Tesla Fleet API

> Fleet API is the official API for interacting with Tesla vehicles and energy products

Tessie provides full access to Tesla Fleet API. We've also built in significant improvements:

* Get instant access to Tesla Fleet API without an extremely complex and lengthy setup process
* Save up to 99% off your Tesla Fleet API bill with unlimited and free vehicle data polling
* Drop-in replacement for developers migrating existing applications from existing Tesla APIs
* Use a simple API key instead of building complex OAuth systems
* Automatic routing between North America, Europe and China Fleet API regions
* Automatic Vehicle Command Protocol command signing

## Get started

Simply point any Fleet API request at `api.tessie.com`.

Provide your access token in an Authorization header or as the access\_token query parameter. [Learn more.](/reference/authentication)

Visit the [Tesla Fleet API Reference](https://developer.tesla.com/docs/fleet-api) to see all endpoints.

### Example Fleet API requests

<CodeGroup>
  ```bash bash theme={null}
  curl -H "Authorization: ROTATING_TESLA_OAUTH_ACCESS_TOKEN" \
  	https://fleet-api.prd.na.vn.cloud.tesla.com/api/1/vehicles

  curl -H "Authorization: ROTATING_TESLA_OAUTH_ACCESS_TOKEN" \
  	https://fleet-api.prd.eu.vn.cloud.tesla.com/api/1/vehicles

  curl -H "Authorization: ROTATING_TESLA_OAUTH_ACCESS_TOKEN" \
  	https://fleet-api.prd.cn.vn.cloud.tesla.cn/api/1/vehicles
  ```
</CodeGroup>

### Example drop-in replacement

<CodeGroup>
  ```bash bash theme={null}
  curl -H "Authorization: Bearer YOUR_API_TOKEN" \
  	https://api.tessie.com/api/1/vehicles
  ```
</CodeGroup>
