Cars
List all cars

List all cars

Retrieves all cars available on Tesla inventories.

curl https://api.teslahunt.io/cars \
  --header 'x-api-key: YOUR_TOKEN'

Note that request above throws an error.

That's because you should at least add one car object attribute as filterByFormula condition:

curl 'https://api.teslahunt.io/cars' \
  --get \
  --data-urlencode 'filterByFormula=AND({currency} = "EUR")' \
  --header 'x-api-key: YOUR_TOKEN'

Check recipes to see some examples.