CIS Automotive API
autodealerdata · Commerce
This API provides access to our Automotive Data. Use of this API is subject to our Terms of Service For a quick start guide click here If you signed up through RapidAPI make your test calls here The general wor
Authentication
Sample Requests
Average, median, standard deviation, population variance, and whole region average of the days of supply left on dealer lots for a given brand and region. The average, median, stdDev, and pVar fields are calculated on a dealer by dealer basis while the whole region average treats the entire region
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/autodealerdata.com/1.0/daysSupply?jwt=example&brandName=example®ionName=REGION_STATE_CA"
import requests
params = {
"jwt": "example",
"brandName": "example",
"regionName": "REGION_STATE_CA"
}
response = requests.get(
"https://api.apis.guru/v2/specs/autodealerdata.com/1.0/daysSupply",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/autodealerdata.com/1.0/daysSupply');
url.searchParams.set('jwt', 'example');
url.searchParams.set('brandName', 'example');
url.searchParams.set('regionName', 'REGION_STATE_CA');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/autodealerdata.com/1.0/daysSupply")
q := baseURL.Query()
q.Set("jwt", "example")
q.Set("brandName", "example")
q.Set("regionName", "REGION_STATE_CA")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/autodealerdata.com/1.0/daysSupply")
uri.query = URI.encode_www_form({
"jwt" => "example",
"brandName" => "example",
"regionName" => "REGION_STATE_CA"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/autodealerdata.com/1.0/daysSupply?" . http_build_query([
"jwt" => "example",
"brandName" => "example",
"regionName" => "REGION_STATE_CA"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Average, median, standard deviation, population variance, and whole region average of the number of days a vehicle spends on dealer lots for a given brand and region. The average, median, stdDev, and pVar fields are calculated on a dealer by dealer basis while the whole region average treats the en
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/autodealerdata.com/1.0/daysToSell?jwt=example&brandName=example®ionName=REGION_STATE_CA"
import requests
params = {
"jwt": "example",
"brandName": "example",
"regionName": "REGION_STATE_CA"
}
response = requests.get(
"https://api.apis.guru/v2/specs/autodealerdata.com/1.0/daysToSell",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/autodealerdata.com/1.0/daysToSell');
url.searchParams.set('jwt', 'example');
url.searchParams.set('brandName', 'example');
url.searchParams.set('regionName', 'REGION_STATE_CA');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/autodealerdata.com/1.0/daysToSell")
q := baseURL.Query()
q.Set("jwt", "example")
q.Set("brandName", "example")
q.Set("regionName", "REGION_STATE_CA")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/autodealerdata.com/1.0/daysToSell")
uri.query = URI.encode_www_form({
"jwt" => "example",
"brandName" => "example",
"regionName" => "REGION_STATE_CA"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/autodealerdata.com/1.0/daysToSell?" . http_build_query([
"jwt" => "example",
"brandName" => "example",
"regionName" => "REGION_STATE_CA"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Get vehicle brand names. These names are used as arguments for other endpoints. The names are generally not case sensitive when used with other endpoints, but it is best practice to use the names returned by this endpoint without changes.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/autodealerdata.com/1.0/getBrands?jwt=example"
import requests
params = {
"jwt": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/autodealerdata.com/1.0/getBrands",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/autodealerdata.com/1.0/getBrands');
url.searchParams.set('jwt', 'example');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/autodealerdata.com/1.0/getBrands")
q := baseURL.Query()
q.Set("jwt", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/autodealerdata.com/1.0/getBrands")
uri.query = URI.encode_www_form({
"jwt" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/autodealerdata.com/1.0/getBrands?" . http_build_query([
"jwt" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with CIS Automotive API?
CIS Automotive API is a Commerce API. Developers commonly use commerce APIs for:
- syncing product catalogues and inventory levels
- building price comparison and deal-finder tools
- processing orders and tracking shipments
- managing customer wishlists and reviews
- automating abandoned-cart and promotional emails
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. CIS Automotive API is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide · Learn about API keys · What is REST?