Dealership APIDealership

Dealership entity

Read metadata for the dealership authorized by the API key, including site, logo, social, and color data.

#Endpoints

Dealership metadata for the API key owner, including basic site context used to interpret public URLs and website records.

GET/v1/dealership
Auth
Send the dealership API key in the x-api-key header.
Detail IDs
This entity is returned for the dealership authorized by the API key.
Dates
Date fields and date filters use ISO 8601 timestamps.

#Response

FieldTypeNullableNotes
iduuidNoDealership ID authorized by the API key.
namestringNoDealership display name.
nicknamestringYesOptional short display name.
slugstringNoInternal dealership slug.
makestringNoPrimary franchise/make.
timezonestringNoIANA timezone name.
descriptionstringYesDealership description.
publicDomainstringNoDomain used when building public URLs.
siteSiteNoPrimary website metadata.
logoImageFileYesDealership logo metadata.
socialobjectNoFacebook, Twitter/X, Instagram, YouTube, and LinkedIn URLs.
colorsobjectNoPrimary and accent brand color values.
createdAtdatetimeNoCreation timestamp.
updatedAtdatetimeNoLast update timestamp.
Identity
id, name, nickname, slug, make, timezone, and description.
Website
publicDomain and a site object with domain, subdomain, CTA, title divider, default lead form description, vehicles per page, and site image references.
Media
logoImage, globalMetaImage, faviconImage, and vehicleOverlayImage use the shared file summary shape.
Brand
social URLs and colors.primary / colors.accent.
Dates
createdAt and updatedAt ISO 8601 timestamps.

#Example Request

Shell
curl "https://api.driverseat.io/v1/dealership" \
  -H "x-api-key: sk-driverseat-..."

#Example Response

JSON
{
  "data": {
    "id": "dealership-id",
    "name": "Example Motors",
    "slug": "example-motors",
    "make": "Ford",
    "timezone": "America/New_York",
    "publicDomain": "example-dealer.com",
    "site": {
      "id": "site-id",
      "domain": "example-dealer.com",
      "subdomain": "example",
      "publishedAt": "2026-06-24T12:00:00.000Z"
    },
    "colors": {
      "primary": "#0f172a",
      "accent": "#2563eb"
    }
  }
}

#Errors

401
The API key is missing, invalid, or revoked.
404
The authorized dealership could not be found.