---
title: "ListingPriceResponse"
url: "https://api-docs.centraldispatch.com/apis/market-intelligence-api-1-0-0/versions/3fc04e8d-bb56-47cd-b2e7-3130bc01a22e/schemas/ListingPriceResponse"
---

> Full API specification: https://api-docs.centraldispatch.com/apis/market-intelligence-api-1-0-0/versions/3fc04e8d-bb56-47cd-b2e7-3130bc01a22e.md

# ListingPriceResponse

Details of the listing price.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Market Intelligence API
  version: 1.0.0
servers:
  - url: https://api.centraldispatch.com
    description: Production server
components:
  schemas:
    ListingPriceResponse:
      type: object
      properties:
        lowPrice:
          type: number
          description: The lowest price found.
          format: double
          nullable: true
          example: 100
        lowPriceCurrency:
          type: string
          description: The currency of `lowPrice`.
          nullable: true
          example: USD
        highPrice:
          type: number
          description: The highest price found.
          format: double
          nullable: true
          example: 200
        highPriceCurrency:
          type: string
          description: The currency of `highPrice`.
          nullable: true
          example: USD
        meanPredictedPrice:
          type: number
          description: The mean predicted price.
          format: double
          nullable: true
          example: 150
        meanPredictedPriceCurrency:
          type: string
          description: The currency of `meanPredictedPrice`.
          nullable: true
          example: USD
        originCity:
          type: string
          description: The pick up city.
          nullable: true
          example: Anaheim
        originState:
          type: string
          description: The pick up state.
          nullable: true
          example: CA
        originZipCode:
          type: string
          description: The pick up ZIP code. Must be a valid United States ZIP code or
            Canadian postal code.
          nullable: true
          example: "92802"
        destinationCity:
          type: string
          description: The delivery city.
          nullable: true
          example: Las Vegas
        destinationState:
          type: string
          description: The delivery state.
          nullable: true
          example: NV
        destinationZipCode:
          type: string
          description: The delivery ZIP code.
          nullable: true
          example: "89169"
        vehicleType:
          type: string
          description: The type of vehicle e.g. CAR, PICKUP, SUV.
          nullable: true
          example: CAR
        vehicleSize:
          type: string
          description: The size of the vehicle.
          nullable: true
          example: MEDIUM
        listingPrice:
          type: number
          description: The listing price.
          format: double
          example: 120
        listingPriceCurrency:
          type: string
          description: The currency of `listingPrice`.
          nullable: true
          example: USD
        listingPricePerMile:
          type: number
          description: The listing price per mile.
          format: double
          example: 1.5
        listingPricePerMileCurrency:
          type: string
          description: The currency of `listingPricePerMile`.
          nullable: true
          example: USD
        listingCreationDate:
          type: string
          description: The date and time the listing was created, in UTC/ISO 8601 format.
          format: date-time
          nullable: true
          example: 2024-08-01T00:00:00Z
        dispatchDistance:
          type: number
          description: The total travel distance.
          format: double
          example: 267
        dispatchDistanceUnits:
          type: string
          description: The units of `dispatchDistance`.
          nullable: true
          example: MILES
        listingDistance:
          type: number
          description: The total travel distance.
          format: double
          example: 267
        listingDistanceUnits:
          type: string
          description: The units of `listingDistance`.
          nullable: true
          example: MILES
        dispatchStatus:
          type: string
          description: The status of the dispatch.
          nullable: true
          example: DELIVERED
        dispatchPrice:
          type: number
          description: The total amount to be paid for completing the dispatch.
          format: double
          example: 180
        dispatchPriceCurrency:
          type: string
          description: The currency of `dispatchPrice`.
          nullable: true
          example: USD
        dispatchPricePerMile:
          type: number
          description: The per mile price of the dispatch.
          format: double
          example: 0.55
        dispatchPricePerMileCurrency:
          type: string
          description: The currency of `dispatchPricePerMile`.
          nullable: true
          example: USD
        dispatchDate:
          type: string
          description: The actual pick up date and time, in UTC/ISO 8601 format.
          format: date-time
          nullable: true
          example: 2024-09-10T00:00:00Z
        minTimeToDispatchForMeanPredictedPrice:
          type: number
          description: The shortest estimated time it will take for your dispatch to be
            accepted by a carrier, if listed at the predicted price.
          format: double
          nullable: true
          example: 2
        minTimeToDispatchForMeanPredictedPriceUnits:
          type: string
          description: The unit of time for the `minTimeToDispatchForMeanPredictedPrice`
            value (e.g., HOURS).
          nullable: true
          example: HOURS
        maxTimeToDispatchForMeanPredictedPrice:
          type: number
          description: The longest estimated time it will take for your dispatch to be
            accepted by a carrier, if listed at the predicted price.
          format: double
          nullable: true
          example: 8
        maxTimeToDispatchForMeanPredictedPriceUnits:
          type: string
          description: The unit of time for the `maxTimeToDispatchForMeanPredictedPrice`
            value (e.g., HOURS).
          nullable: true
          example: HOURS
        isEnclosed:
          type: boolean
          description: Indicates whether the comparable listing was transported on a fully
            enclosed trailer. Lets consumers using `enforceEnclosedOnly` confirm
            the filter has been applied, and gives all consumers visibility into
            the trailer type for each comparable listing.
          nullable: true
          example: true
        inoperable:
          type: boolean
          description: Indicates whether the vehicle on the comparable listing was
            inoperable (could not be driven on/off the trailer under its own
            power). Surfaces a key pricing factor, since inoperable vehicles
            typically command different rates than operable ones.
          nullable: true
          example: false
      description: Details of the listing price.
```
