Skip to content

Quick Start

Get up and running with the QuoteFox API in 5 minutes.

Step 1: Register Your FMO

bash
curl -X POST https://app.quotefox.au/api/v1/register \
  -H "Content-Type: application/json" \
  -d '{
    "companyName": "Fleet Corp Pty Ltd",
    "contactEmail": "api@fleetcorp.com.au"
  }'

Save the apiKey from the response — it's shown only once.

Step 2: Browse Available Dealers

bash
export API_KEY="qfx_your_api_key_here"

curl -H "Authorization: Bearer $API_KEY" \
  "https://app.quotefox.au/api/v1/dealers"

Step 3: Check a Dealer's Inventory

Pick a dealer ID from step 2:

bash
curl -H "Authorization: Bearer $API_KEY" \
  "https://app.quotefox.au/api/v1/dealers/DEALER_ID/inventory"

Step 4: Request a Quote

bash
curl -X POST https://app.quotefox.au/api/v1/quotes \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "dealershipId": "DEALER_ID",
    "globalCarId": "CAR_ID_FROM_INVENTORY",
    "clientName": "Fleet Corp Pty Ltd",
    "clientEmail": "fleet@corp.com.au",
    "postcode": "3000",
    "callbackUrl": "https://your-system.com/webhooks/quotefox"
  }'

Step 5: Check Quote Status

If the dealer has auto-respond enabled, you'll get the price immediately. Otherwise, poll or wait for the webhook:

bash
curl -H "Authorization: Bearer $API_KEY" \
  "https://app.quotefox.au/api/v1/quotes/QUOTE_ID"

What's Next?

QuoteFox API Documentation