Discover/Carsandbids API
live

Carsandbids APIcarsandbids.com

Access live Cars & Bids auction listings via API. Get vehicle titles, current bids, end times, mileage, location, and more for enthusiast car auctions.

This API takes change requests — .
Endpoint health
verified 2h ago
list_auctions
1/1 passing latest checkself-healing
Endpoints
1
Updated
3h ago

What is the Carsandbids API?

The Cars & Bids API exposes live enthusiast car auction listings through a single list_auctions endpoint, returning up to 9 fields per auction object including title, current bid, auction end time, mileage, location, and direct auction URL. The response also includes a total count of all live auctions, making it straightforward to paginate through the full active inventory using limit and offset parameters.

Try it
Sort order for auction results.
Maximum number of auctions to return per request (1–100).
Number of auctions to skip for pagination. Use with limit to page through results.
api.parse.bot/scraper/f44a2812-e883-42bd-9961-ac2a1644dcce/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/f44a2812-e883-42bd-9961-ac2a1644dcce/list_auctions?sort=ending_soon&limit=10&offset=0' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace carsandbids-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Cars & Bids SDK — bounded, re-runnable; every call capped."""
from parse_apis.carsandbids_com_api import CarsAndBids, Sort, InvalidInput

client = CarsAndBids()

# List auctions ending soonest
for auction in client.auctions.list(sort=Sort.ENDING_SOON, limit=3):
    print(auction.title, auction.current_bid, auction.location)

# Page through results using offset
for auction in client.auctions.list(sort=Sort.NEWLY_LISTED, offset=5, limit=2):
    print(auction.title, auction.auction_end, auction.mileage)

# Get a single auction using .first()
top = client.auctions.list(sort=Sort.NO_RESERVE, limit=1).first()
if top:
    print(top.title, top.no_reserve, top.auction_url)

# Typed error handling
try:
    for a in client.auctions.list(sort=Sort.LOWEST_MILEAGE, limit=2):
        print(a.title, a.current_bid, a.mileage)
except InvalidInput as e:
    print("invalid input:", e)

print("exercised: auctions.list")
All endpoints · 1 totalmissing one? ·

Retrieve live auctions from Cars & Bids. Returns vehicle details including title, current bid, auction end time, location, mileage, and auction URL. Results are sorted by the chosen criteria. The response includes a total count so callers can paginate through all available auctions by advancing the offset.

Input
ParamTypeDescription
sortstringSort order for auction results.
limitintegerMaximum number of auctions to return per request (1–100).
offsetintegerNumber of auctions to skip for pagination. Use with limit to page through results.
Response
{
  "type": "object",
  "fields": {
    "count": "number of auctions returned in this response",
    "total": "total number of live auctions available",
    "auctions": "array of auction objects with vehicle details"
  },
  "sample": {
    "data": {
      "count": 3,
      "total": 257,
      "auctions": [
        {
          "id": "3yy1aoOE",
          "title": "2024 Lexus LC 500 Coupe",
          "seller": "John Doe",
          "mileage": "5,300 Miles",
          "featured": true,
          "location": "Charlottesville, VA 22903",
          "subtitle": "5k Miles, 5.0-Liter V8, Bespoke Build Package, Ultrasonic Blue Mica",
          "image_url": "https://media.carsandbids.com/9004500a220bf3a3d455d15ee052cf8c332606f8/photos/LexusLC5002024002/edit/05CLk.jpg?t=178311352277",
          "no_reserve": false,
          "auction_end": "2026-07-14T17:30:00.000+00:00",
          "auction_url": "https://carsandbids.com/auctions/3yy1aoOE",
          "current_bid": 105000
        }
      ]
    },
    "status": "success"
  }
}

About the Carsandbids API

What the API Returns

The list_auctions endpoint returns an array of live auction objects from Cars & Bids, a platform focused on enthusiast and modern-era collector vehicles. Each auction object includes the vehicle title, current bid amount, auction end time, seller-reported mileage, vehicle location, and a direct URL to the auction listing. The response envelope also carries a count (auctions in this page) and total (all live auctions available), which lets callers determine how many pages to request.

Filtering and Pagination

The endpoint accepts three optional parameters. sort controls the ordering of results — useful for surfacing auctions ending soonest or sorted by bid amount. limit caps results per request between 1 and 100. offset skips a specified number of records, enabling classic offset-based pagination. For example, to retrieve the second page of 25 auctions, pass limit=25 and offset=25.

Coverage Scope

The API reflects only live (active) auctions at the time of the request. It covers the core listing fields visible on the Cars & Bids browse page: vehicle identity, current bidding state, timing, and location. Completed auction history, sold prices from past auctions, and individual bid histories are not part of the current response shape.

Reliability & maintenanceVerified

The Carsandbids API is a managed, monitored endpoint for carsandbids.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when carsandbids.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official carsandbids.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2h ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track the current bid and end time of active enthusiast car auctions for a deal-monitoring tool
  • Build an auction calendar that surfaces Cars & Bids listings ending within the next 24 hours using the end time field
  • Aggregate mileage and location data across live listings to analyze regional inventory distribution
  • Create price-tracking dashboards that log the current bid field over time for specific vehicle makes or models
  • Feed live auction URLs into a notification system that alerts subscribers when a watched vehicle type appears
  • Power a vehicle discovery app by paginating through all live auctions with limit and offset parameters
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Cars & Bids have an official public developer API?+
Cars & Bids does not currently offer a documented public developer API. There is no official endpoint or API key program listed on their site.
What exactly does the list_auctions endpoint return for each vehicle?+
Each auction object includes the vehicle title, current bid amount, auction end time, mileage, seller location, and the direct URL to that auction on Cars & Bids. The response also includes a count of auctions in the current page and a total of all live auctions, which you use for pagination.
Does the API return completed or past auction results, including final sale prices?+
Not currently. The API covers only live (active) auctions and their current bid amounts. Past auction results, final hammer prices, and sold listings are not included in the current response. You can fork this API on Parse and revise it to add an endpoint targeting completed auction data.
Can I filter auctions by make, model, or year?+
The list_auctions endpoint does not currently accept make, model, or year as filter parameters — sorting and pagination are the only supported controls. The vehicle title field in each result does contain model information that you can filter client-side. You can fork this API on Parse and revise it to add server-side filtering by vehicle attributes.
How fresh is the auction data, and does it include reserve or no-reserve status?+
The API reflects live listings as they currently appear on Cars & Bids. Reserve or no-reserve status and individual bid history are not fields in the current response shape. You can fork this API on Parse and revise it to surface those additional listing attributes.
Page content last updated . Spec covers 1 endpoint from carsandbids.com.
Related APIs in AutomotiveSee all →
bringatrailer.com API
Search live and historical Bring a Trailer auctions to find pricing trends, model comparisons, and detailed listing information for classic and collectible vehicles. Track auction results, compare price trends across models, and browse the complete directory of makes and models available on the platform.
auctiontime.com API
Search and browse equipment and truck auction listings from AuctionTime.com, view detailed information about specific auctions, filter by category and auctioneer, and track auction results by date. Access comprehensive auction data including listings, categories, and auctioneer information all in one place.
autobidmaster.com API
Search and browse vehicle auction inventory with detailed lot information, filters by make, type, body style, and damage condition, plus discover featured items and auction locations. Find the perfect vehicle by accessing comprehensive inventory data and exploring popular makes and damage types across AutoBidMaster auctions.
bid.cars API
Search and browse salvage and insurance vehicle auctions from Copart and IAAI marketplaces, view detailed listing information including photos, pricing history, and vehicle specifications by VIN or lot number. Find similar vehicles, access sales history, and explore available makes and models to discover your next auction opportunity.
cars.com API
Search for vehicles on Cars.com using filters like price, make, and model, then get detailed specifications and dealer inventory information for any listing you're interested in. Access comprehensive vehicle details including pricing, features, and dealer contact information all in one place.
carsforsale.com API
Search vehicle listings and browse detailed car inventory by make, model, and trim to find the perfect vehicle on CarsForSale.com. Access comprehensive listing details including pricing, specifications, and availability all in one place.
auctionzip.com API
Search and browse auction lots across the AuctionZip marketplace, view detailed lot information and complete auction catalogs, track historical prices realized, and discover auctioneers by name or location. Access auction schedules, item specifications, seller terms, and top-performing auctioneers.
autotempest.com API
Search and compare used and new car listings from multiple marketplaces in one place, saving time on your vehicle hunt. Find detailed inventory information across platforms to discover the best deals available.