Get Dealer
curl --request GET \
--url https://api.autosnap.com/v1/dealers/{dealership_id}import requests
url = "https://api.autosnap.com/v1/dealers/{dealership_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.autosnap.com/v1/dealers/{dealership_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.autosnap.com/v1/dealers/{dealership_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.autosnap.com/v1/dealers/{dealership_id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.autosnap.com/v1/dealers/{dealership_id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.autosnap.com/v1/dealers/{dealership_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Dealers
Get Dealer
Get a single dealership’s details and configuration.
GET
/
v1
/
dealers
/
{dealership_id}
Get Dealer
curl --request GET \
--url https://api.autosnap.com/v1/dealers/{dealership_id}import requests
url = "https://api.autosnap.com/v1/dealers/{dealership_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.autosnap.com/v1/dealers/{dealership_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.autosnap.com/v1/dealers/{dealership_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.autosnap.com/v1/dealers/{dealership_id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.autosnap.com/v1/dealers/{dealership_id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.autosnap.com/v1/dealers/{dealership_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}GET /v1/dealers/{dealership_id}
v1.0 schema lock. The response shape on this page is the locked v1.0 contract. We will never remove a documented field, never rename a field, and never change a field’s type without bumping to v2 (see Versioning). New fields may be added additively; your client must tolerate unknown keys. The
ipacket_available field is deprecated in favour of documents_available — both fields will return the same value for a 90-day overlap window.Parameters
| Name | Type | In | Required | Description |
|---|---|---|---|---|
dealership_id | string | path | Yes | The dealership’s public ID (e.g. dlr_8cfc0b00a98b) |
api_key | string | query | Yes | Your API key |
Example
curl "https://api.autosnap.com/v1/dealers/dlr_8cfc0b00a98b?api_key=YOUR_API_KEY"
Response
{
"success": true,
"dealership": {
"dealership_id": "dlr_8cfc0b00a98b",
"name": "Carl Black Buick Gmc",
"website": "carlblackroswell.com",
"city": "Roswell",
"state": "Georgia",
"street_address": "11225 Alpharetta Highway",
"phone": "678-317-2740",
"vehicle_count": 859,
"active": true,
"last_import": "2026-04-09T16:38:02+00:00",
"documents_available": false,
"ipacket_available": false,
"subscribed_at": "2026-03-15T10:00:00+00:00"
},
"config": {
"provider": "CarsCommerce",
"inventory_type": null,
"schedule": "0 */12 * * *",
"last_scraped": null,
"last_vehicle_count": null,
"last_import_status": null
}
}
Field notes
documents_available—truewhen this dealership participates in the Dealer-Provided Documentation premium data package. Use this field for new integrations.ipacket_available— Deprecated. Same value asdocuments_available, retained for backward compatibility. Will be removed in a future release (announcement + 90-day deprecation window before removal). Migrate todocuments_available.
Errors
| Status | Description |
|---|---|
| 404 | Dealership not found or not subscribed under your account |