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

# Get Dealer

> Get a single dealership's details and configuration.

`GET /v1/dealers/{dealership_id}`

<Note>
  **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](/get-started/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.
</Note>

Get detailed information about a single dealership including its current configuration, import status, and subscription details.

## 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

```bash theme={null}
curl "https://api.autosnap.com/v1/dealers/dlr_8cfc0b00a98b?api_key=YOUR_API_KEY"
```

## Response

```json theme={null}
{
  "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` — `true` when this dealership participates in the Dealer-Provided Documentation premium data package. Use this field for new integrations.
* `ipacket_available` — **Deprecated.** Same value as `documents_available`, retained for backward compatibility. Will be removed in a future release (announcement + 90-day deprecation window before removal). Migrate to `documents_available`.

## Errors

| Status | Description                                               |
| ------ | --------------------------------------------------------- |
| 404    | Dealership not found or not subscribed under your account |


## OpenAPI

````yaml GET /v1/dealers/{dealership_id}
openapi: 3.0.3
info:
  title: AutosnapAI Origin API
  description: Dealer resolution, inventory management, and webhook APIs
  version: 1.0.0
servers:
  - url: https://api.autosnap.com
    description: Production
security: []
paths:
  /v1/dealers/{dealership_id}:
    get:
      tags:
        - origin
      summary: Get Dealer
      description: Get a single dealership's details and config.
      operationId: get_dealer_v1_dealers__dealership_id__get
      parameters:
        - name: dealership_id
          in: path
          required: true
          schema:
            type: string
            title: Dealership Id
        - name: api_key
          in: query
          required: true
          schema:
            type: string
            title: Api Key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````