VINaudit Selections API

The Selections API from VINaudit — 1 operation(s) for selections.

Operations 1

GET /selections Get Vehicle Selections #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/vinaudit-selections-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

vinaudit-selections-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: VINaudit Vehicle Specifications Selections API
  description: Retrieve standardized vehicle specifications by VIN or year/make/model/trim including engine details, transmission, fuel economy, dimensions, colors, equipment, NHTSA recalls, warranties, and vehicle photos. Supports lookup by VIN, vehicle ID, or year/make/model/trim combination.
  version: '3.0'
  contact:
    name: VINaudit Support
    url: https://www.vinaudit.com/vehicle-data-api
  license:
    name: Commercial
    url: https://www.vinaudit.com/vehicle-specifications-api
servers:
- url: https://specifications.vinaudit.com/v3
  description: VINaudit Vehicle Specifications API v3
tags:
- name: Selections
paths:
  /selections:
    get:
      operationId: getVehicleSelections
      summary: Get Vehicle Selections
      description: Retrieve lists of available years, makes, models, and trims. Supports filtering by providing partial YMMT parameters. Use the list parameter to control how many hierarchy levels are returned. Use the collection parameter to filter by market status.
      parameters:
      - name: key
        in: query
        required: true
        description: API authentication key
        schema:
          type: string
          example: YOUR_API_KEY_HERE
      - name: list
        in: query
        required: false
        description: Controls which YMMT hierarchy levels to return. Can be year, year+make, year+make+model, or year+make+model+trim.
        schema:
          type: string
          example: year+make+model
      - name: id
        in: query
        required: false
        description: Vehicle ID to filter selections
        schema:
          type: string
          example: 2013_subaru_outback
      - name: year
        in: query
        required: false
        description: Filter by year
        schema:
          type: integer
          example: 2013
      - name: make
        in: query
        required: false
        description: Filter by make
        schema:
          type: string
          example: subaru
      - name: model
        in: query
        required: false
        description: Filter by model
        schema:
          type: string
          example: outback
      - name: trim
        in: query
        required: false
        description: Filter by trim
        schema:
          type: string
          example: base
      - name: style
        in: query
        required: false
        description: Filter by body style
        schema:
          type: string
          example: wagon
      - name: collection
        in: query
        required: false
        description: Filter by market availability
        schema:
          type: string
          enum:
          - in-market
          - popular
          - all
      - name: format
        in: query
        required: false
        description: Response format
        schema:
          type: string
          enum:
          - json
          - xml
          - csv
          default: json
      responses:
        '200':
          description: Vehicle selections response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SelectionsResponse'
              example:
                selections:
                  years:
                  - name: 2013
                    id: '2013'
                    makes:
                    - name: Subaru
                      id: 2013_subaru
                      models:
                      - name: Outback
                        id: 2013_subaru_outback
                        trims:
                        - name: 2.5i
                          id: 2013_subaru_outback_25i
                        - name: Base
                          id: 2013_subaru_outback_base
      tags:
      - Selections
components:
  schemas:
    SelectionsResponse:
      type: object
      description: Vehicle selections API response
      properties:
        selections:
          type: object
          description: Available vehicle selections
          properties:
            years:
              type: array
              items:
                $ref: '#/components/schemas/YearEntry'
            makes:
              type: array
              items:
                $ref: '#/components/schemas/MakeEntry'
            models:
              type: array
              items:
                $ref: '#/components/schemas/ModelEntry'
            trims:
              type: array
              items:
                $ref: '#/components/schemas/TrimEntry'
    YearEntry:
      type: object
      properties:
        name:
          type: integer
          description: Model year number
        id:
          type: string
          description: Year identifier
        makes:
          type: array
          items:
            $ref: '#/components/schemas/MakeEntry'
    ModelEntry:
      type: object
      properties:
        name:
          type: string
          description: Model name
        id:
          type: string
          description: Model identifier
        trims:
          type: array
          items:
            $ref: '#/components/schemas/TrimEntry'
    TrimEntry:
      type: object
      properties:
        name:
          type: string
          description: Trim name
        id:
          type: string
          description: Trim identifier
    MakeEntry:
      type: object
      properties:
        name:
          type: string
          description: Make name
        id:
          type: string
          description: Make identifier
        models:
          type: array
          items:
            $ref: '#/components/schemas/ModelEntry'