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

# List Dealers

> List all dealerships under your account.

`GET /v1/dealers`

<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.
</Note>

List all active dealerships subscribed under your account. Returns dealer details, provider info, import status, and configuration.

## Parameters

| Name      | Type   | In    | Required | Description  |
| --------- | ------ | ----- | -------- | ------------ |
| `api_key` | string | query | Yes      | Your API key |

## Example

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

## Response

```json theme={null}
{
  "success": true,
  "dealers": [
    {
      "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",
      "provider": "CarsCommerce",
      "inventory_type": "all",
      "schedule": "0 */12 * * *",
      "vehicle_count": 872,
      "last_import": "2026-04-13T13:07:06.763767+00:00",
      "last_scraped": null,
      "active": true
    }
  ],
  "count": 4
}
```

<Note>
  Some fields like `inventory_type`, `last_import`, and `last_scraped` may be `null` for dealers that haven't completed their first import yet.
</Note>


## OpenAPI

````yaml GET /v1/dealers
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:
    get:
      tags:
        - origin
      summary: List Dealers
      description: List all dealerships under this account.
      operationId: list_dealers_v1_dealers_get
      parameters:
        - 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

````