Skip to main content

Quoting Integration Guide

This guide shows how to use the Pricing Insights API as the quoting engine behind a UI you build. For setup, see Getting Started; for the full request body and response fields, see the API Reference.

warning

This guide applies to Pricing Insights API v2 only.

What is the Pricing Insights API?

The Pricing Insights API returns a data-backed price estimate for moving one or more vehicles on a given lane (pickup → delivery). Each response includes the recommended price, a price range, a confidence score, and the comparable moves the estimate is built from. Estimates are informational and not a guaranteed or binding price. Actual prices vary by lane, timing, and other factors. Think of the recommended price as a data-backed anchor for the lane and vehicles you send — a starting point for your own pricing, not a number your customer has to see.

Use it to power your own quoting flow, calculator, or checkout step — so you can generate a quote the moment a lead enters a lane and one or more vehicles. The estimate powers your pricing behind the scenes, and you decide what your customer sees.

What you build vs. what we provide

We provide the API. You build the UI. Super Dispatch does not offer a quoting widget or drop-in component, so you call the API and render the response however fits your product.

Build your own quote UI

This is where the integration lives — you map the response onto your own interface. Super Dispatch does not provide a component, so render whatever fits your product.

How it works:

  1. Send the lane and one or more vehicles to the API.
  2. Get back a recommended price plus supporting signals.
  3. Add your margin and any adjustments in your own system.
  4. Show your customer your quoted price.

Signals for your pricing decision (internal)

These fields help you judge the estimate and set a price. Most brokers keep them internal.

SignalResponse field
Recommended price (anchor)data.price
Price rangedata.price_range_lower to data.price_range_upper
Confidence scoredata.confidence
Orders behind the estimatedata.volume
Comparable loadsdata.recent_moves[]

Re-request whenever the lane or vehicles change.

What to show your customer

Most brokers keep the signals above internal and show the customer a single, clean number — your quoted price.

Your quoted price = recommended price + your margin. You set your margin in your own system, at your own discretion.

Because the recommended price already reflects the lane and vehicles you send, some customers apply further adjustments for factors such as inoperable vehicles, enclosed transport, or oversized or modified vehicles — again, set in your own system.

The recommended price is an informational estimate. You independently set your own prices and margins at your sole discretion.

The signals are for your decision — not necessarily your customer's screen. Confidence, order volume, and comparable loads help you judge the estimate and price with confidence. Most brokers keep them behind the scenes and show the customer one clean quoted price.

Get a quote

Send a POST to /api/v2/recommended-price with the lane and one or more vehicles — a single request can include multiple vehicles, and the estimate covers the set. Try it below: enter a lane and vehicles to see a sample quote. For a copy-paste walkthrough see Quickstart; for every field definition see the API Reference.

note

This playground renders sample data to illustrate the response shape and a possible UI — it does not call the live API (your key must stay server-side). The Build it yourself snippets it shows are real.

Instant Quote

Price your vehicle shipment

Enter your route and vehicles to get a price in seconds.

Vehicle 1
No account needed · Free · Takes 10 seconds
Build it yourself

A minimal starting point — call the API from your backend, then render the response in your own UI.

curl -X POST "https://pricing-insights.superdispatch.com/api/v2/recommended-price" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"trailer_type": "open",
"pickup": { "city": "Los Angeles", "state": "CA", "zip": "90001" },
"delivery": { "city": "Dallas", "state": "TX", "zip": "75201" },
"vehicles": [
{ "type": "sedan", "is_inoperable": false, "make": "Toyota", "model": "Camry", "year": "2019" }
]
}'

Errors & limits

Every response uses the same envelope: meta.status is either "success" or "fail". On failure, the response includes a type you can branch on, such as SAME_ZIP_CODES or NO_ROUTE_AVAILABLE. The API allows up to 50 requests per 10 seconds and returns 429 when you exceed that.

See Response Handling for the full envelope and error catalog, and Route Coverage & Limits for supported lanes.