CarsXE Market Value API

The Market Value API from CarsXE — 1 operation(s) for market value.

OpenAPI Specification

carsxe-market-value-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: CarsXE Vehicle Data Auth Market Value API
  description: CarsXE is a vehicle data API platform offering VIN decoding, vehicle specifications, market value, license plate decoding, vehicle recalls and related lookups. All endpoints accept an API key as a query string parameter `key`.
  version: '1'
  contact:
    name: CarsXE
    url: https://api.carsxe.com
servers:
- url: https://api.carsxe.com
  description: Production
security:
- ApiKeyQuery: []
tags:
- name: Market Value
paths:
  /marketvalue:
    get:
      tags:
      - Market Value
      summary: Retrieve market value data for a vehicle by VIN
      operationId: getMarketValue
      parameters:
      - $ref: '#/components/parameters/ApiKey'
      - in: query
        name: vin
        required: true
        schema:
          type: string
          minLength: 17
          maxLength: 17
      - in: query
        name: format
        schema:
          type: string
          enum:
          - json
          - xml
          default: json
      responses:
        '200':
          description: Market value response
          content:
            application/json:
              schema:
                type: object
components:
  parameters:
    ApiKey:
      in: query
      name: key
      required: true
      schema:
        type: string
      description: Your CarsXE API key
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: key
      description: CarsXE API key from https://api.carsxe.com/dashboard