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

> List all IMS feed configurations under your account.

`GET /v1/ims/feeds`

<Warning>
  **AutoSnap-internal only.** This endpoint is restricted to AutoSnap admin clients. Customers should use [`GET /v1/ims/feeds/{feed_id}/history`](/api-reference/endpoints/get-ims-feed-history) against feed IDs they've been given to audit feed activity. Non-admin API keys receive `403 ADMIN_REQUIRED`.
</Warning>

List all IMS feed configurations for the authenticated admin client. Returns feed details including provider, file info, last import status, and staleness threshold.

## Parameters

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

## Example

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

## Response

```json theme={null}
{
  "feeds": [
    {
      "id": 1,
      "dealership_id": "dlr_8cfc0b00a98b",
      "provider": "vauto",
      "ftp_path": "vauto",
      "file_name": "MP14015.csv",
      "dealer_identifier": null,
      "active": true,
      "staleness_threshold_hours": 48,
      "last_import_at": "2026-04-14T06:15:00+00:00",
      "last_vehicle_count": 381,
      "last_file_modified": "2026-04-14T01:04:04+00:00",
      "created_at": "2026-04-13T20:00:00+00:00"
    }
  ]
}
```

## Response Fields

| Field                       | Type    | Description                                                     |
| --------------------------- | ------- | --------------------------------------------------------------- |
| `id`                        | integer | Feed config ID                                                  |
| `dealership_id`             | string  | Dealership public ID                                            |
| `provider`                  | string  | IMS provider name                                               |
| `ftp_path`                  | string  | Provider directory name on SFTP                                 |
| `file_name`                 | string  | Exact CSV filename being monitored                              |
| `dealer_identifier`         | string  | Optional dealer ID filter for multi-dealer files                |
| `active`                    | boolean | Whether the feed is actively being polled                       |
| `staleness_threshold_hours` | integer | Hours without an update before a `ims.feed.stale` webhook fires |
| `last_import_at`            | string  | ISO timestamp of last successful import                         |
| `last_vehicle_count`        | integer | Number of vehicles in last import                               |
| `last_file_modified`        | string  | Last known modification time of the CSV on SFTP                 |
| `created_at`                | string  | When the feed config was created                                |


## OpenAPI

````yaml GET /v1/ims/feeds
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/ims/feeds:
    get:
      tags:
        - ims
      summary: List Feed Configurations
      description: List all IMS feed configurations for the authenticated client.
      operationId: list_ims_feeds
      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

````