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

> List all webhook subscriptions for your account.

`GET /v1/webhooks`

<Note>
  **v1.0 schema lock.** The response shape on this page is the locked v1.0 contract. The signing `secret` is NEVER returned by this endpoint. 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)).
</Note>

List all webhook subscriptions for your account, including both active and inactive subscriptions.

## Parameters

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

## Example

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

## Response

```json theme={null}
{
  "success": true,
  "count": 3,
  "webhooks": [
    {
      "id": 1,
      "event_type": "vehicle.created",
      "url": "https://your-server.com/webhooks/autosnap",
      "dealership_id": null,
      "active": true,
      "failure_count": 0,
      "max_failures": 10,
      "last_triggered_at": "2026-04-09T16:38:02+00:00",
      "last_status_code": 200,
      "created_at": "2026-04-01T10:00:00+00:00",
      "dealership_name": null
    }
  ]
}
```


## OpenAPI

````yaml GET /v1/webhooks
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/webhooks:
    get:
      tags:
        - origin
      summary: List Webhooks
      description: List all webhook subscriptions for the authenticated client.
      operationId: list_webhooks_v1_webhooks_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

````