Cars.com Scraper avatar

Cars.com Scraper

Pricing

from $1.00 / 1,000 cars

Go to Apify Store
Cars.com Scraper

Cars.com Scraper

Scrapes car listings from Cars.com using their GraphQL API. Extracts detailed vehicle data including price, specs, images, dealer info, and features.

Pricing

from $1.00 / 1,000 cars

Rating

0.0

(0)

Developer

Rigel Bytes

Rigel Bytes

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

14 hours ago

Last modified

Share

Extract detailed vehicle listings from Cars.com using their GraphQL API — including price, specs, images, dealer info, and financing breakdown — for just $1 per 1,000 listings. Perfect for market research, price monitoring, inventory tracking, and automotive data analysis.


What can Cars.com Scraper do for you?

  • Extract thousands of car listings from any Cars.com search result URL — new, used, and certified pre-owned vehicles
  • Get complete vehicle specs — year, make, model, trim, engine, transmission, drivetrain, fuel type, mileage, and more
  • Capture pricing and financing data — list price, MSRP, estimated monthly payments, tax estimates, and loan breakdowns
  • Collect dealer information — dealer name, location (city/state/zip), seller type, and listing URLs
  • Download vehicle images — primary image and full gallery URLs for every listing
  • Filter by any Cars.com search parameter — make, model, price range, year range, mileage, body style, features, and location

What data can you extract?

FieldDescription
🏷️ titleFull vehicle title (e.g. "2026 Lotus Emira V6 SE")
📅 yearModel year
🏭 makeVehicle manufacturer
🚗 modelVehicle model
trimTrim level
💰 priceListed price
💵 listPriceCar price from calculator
📊 msrpManufacturer's suggested retail price
fuelTypeGasoline, Hybrid, Electric, etc.
🔧 engineEngine details
⚙️ transmissionTransmission type
🛞 drivetrainDrivetrain (AWD, RWD, FWD, 4WD)
📏 mileageOdometer reading
🎨 exteriorColorExterior color
🪑 interiorColorInterior color
🏢 dealerNameDealership name
📍 dealerCity / dealerStateDealer location
🔖 stockTypeNew, Used, or Certified
certifiedPreownedCPO indicator
🆔 vinVehicle Identification Number
🖼️ imageUrl / imageUrlsPrimary image + gallery
🔗 listingUrlDirect link to listing
💳 calc_*Financing calculator breakdown

Why use this scraper?

  • 🔬 Market Research — Analyze pricing trends, model distributions, and inventory levels across the US automotive market
  • 📉 Price Monitoring — Track price changes over time for specific makes, models, or trims
  • 📋 Inventory Analysis — Understand dealer inventory composition, stock types, and regional availability
  • 🏢 Competitive Intelligence — Monitor dealer pricing strategies and new/used vehicle stock patterns
  • 🤖 Automation — Integrate car listing data into your own analytics, dashboards, or lead generation systems
  • 💰 Financing Insights — Calculate loan estimates, down payments, and total interest across vehicles

Pricing

  • $1/1,000 listings
  • No hidden fees or limits on usage.

How to use Cars.com Scraper

  1. Create a free Apify account at console.apify.com
  2. Open the Cars.com Scraper and click "Try" or "Start"
  3. Enter your search URLs — paste one or more Cars.com search results URLs (e.g. https://www.cars.com/shopping/results/?stock_type=new&makes[]=honda&zip=72076)
  4. Set max items (optional) — limit how many listings to scrape, or leave 0 for unlimited
  5. Configure proxy (optional) — residential proxies recommended for large-scale scraping
  6. Start the run and download your data as JSON, CSV, or Excel

Input

The Cars.com Scraper accepts the following input fields:

FieldTypeRequiredDescription
searchUrlsarray✅ YesCars.com search result URLs to scrape (e.g. https://www.cars.com/shopping/results/?stock_type=new&zip=72076&maximum_distance=all)
maxItemsinteger❌ NoMaximum number of listings to scrape (default: 0 = unlimited, min: 0)
proxyConfigurationobject❌ NoProxy settings for anti-bot protection (default: Apify residential proxy)

📝 Copy for Use:

{
"searchUrls": [
{
"url": "https://www.cars.com/shopping/results/?stock_type=new&makes[]=honda&models[]=accord&zip=72076&maximum_distance=all"
}
],
"maxItems": 1000,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}

Output

The scraper outputs structured JSON for each vehicle listing. Here's a preview:

Cars.com Scraper Output

Why Choose This Scraper?

  • Affordable: Pay only $1 per 1,000 listings scraped.
  • Comprehensive: Extracts 30+ data points per listing including pricing, specs, images, dealer info, and financing breakdown.
  • Easy to Use: Just paste a Cars.com search URL — no configuration or setup required.
  • Reliable: Uses Cars.com's native GraphQL API for fast, structured data extraction with proxy support for large-scale runs.
  • Shifter

    • Reliable residential proxies all over the world.
    • Cheap rates
    • Order Shifter Now
    • Get 10% Off any product, use coupan rigelbytes-YoBB.
  • OxyLabs

    • 100M+ Proxies
    • Fastest proxies in the market
    • Real profile, human-like Residential IPs
    • Quality assurance framework for most reliable IPs
    • Get Proxies
  • DataImpulse

Learn More About Proxies

  • Exclusive Deals: Some providers may offer special discounts or bonuses when you use our link.
  • Support Our Work: Each purchase helps us maintain and improve the tools and services we provide.
  • No Extra Cost: You pay the same price, but part of it goes to supporting our efforts.

Running via Apify Console

You can run this actor from the Apify Console by providing the necessary input parameters.

Running via API

You can trigger this actor using the Apify API, passing the required input in the request body.

API

Python

from apify_client import ApifyClient
client = ApifyClient("YOUR-APIFY-TOKEN")
run = client.actor("rigelbytes/cars-scraper").call(
run_input={
"searchUrls": [
{
"url": "https://www.cars.com/shopping/results/?stock_type=new&makes[]=honda&models[]=accord&zip=72076&maximum_distance=all"
}
],
"maxItems": 1000,
},
)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)

JavaScript

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR-APIFY-TOKEN' });
const run = await client
.actor('rigelbytes/cars-scraper')
.call({
searchUrls: [
{
url: 'https://www.cars.com/shopping/results/?stock_type=new&makes[]=honda&models[]=accord&zip=72076&maximum_distance=all',
},
],
maxItems: 1000,
});
const { items } = await client
.dataset(run.defaultDatasetId)
.listItems();
items.forEach((item) => console.log(item));

cURL

curl -X POST \
"https://api.apify.com/v2/acts/rigelbytes/cars-scraper/runs?token=YOUR-APIFY-TOKEN" \
-H "Content-Type: application/json" \
-d '{
"searchUrls": [
{
"url": "https://www.cars.com/shopping/results/?stock_type=new&makes[]=honda&models[]=accord&zip=72076&maximum_distance=all"
}
],
"maxItems": 1000
}'

🚀 Other Tools by Rigel Bytes

Explore 75 more scraping tools by Rigel Bytes, organized by use case:

📱 Social Media

Scrape Instagram, TikTok, LinkedIn, and more for content research and marketing intelligence.

  • Export Instagram Reels — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Facebook Ads Scraper — Extract posts, profiles, and engagement data from Facebook for content research, influencer tracking, and marketing analytics.
  • Instagram Analytics Tool — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Comment Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Creator Stats — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Engagement Tool — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Post Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • instagram-posts — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Profile Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Instagram Reel Scraper — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • linkedin-company-details — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
  • Linkedin Company Scraper — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
  • LinkedIn Profile Scraper — Extract posts, profiles, and engagement data from LinkedIn for content research, influencer tracking, and marketing analytics.
  • Scrape Instagram Creators — Extract posts, profiles, and engagement data from Instagram for content research, influencer tracking, and marketing analytics.
  • Tiktok Comment Scraper — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.
  • Tiktok Creator Stats — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.
  • Tiktok Engagement Rate — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.
  • TikTok Profile Scraper — Extract posts, profiles, and engagement data from TikTok for content research, influencer tracking, and marketing analytics.

🏠 Real Estate

Extract property listings, prices, and agent data from top real estate platforms.

  • Airbnb Address Finder — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Availability Calendar — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Detailed Scraper - Search & Listing Details — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Images Downloader — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Listing — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Listing Urls — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Property Details — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Reviews — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Airbnb Scraper - Search & Listing Details — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Bayut Scraper — Scrape property listings and market data from Bayut for market research, price monitoring, and investment analysis.
  • Boligsiden.dk Scraper — Scrape Danish real estate listings from Boligsiden.dk — for sale, sold, and rental properties with pricing, details,...
  • Daft.ie Property Scraper — Scrapes property listings from Daft.ie including residential, rental, commercial, and new homes across Ireland.
  • dubai-listing-scraper — Extract unlimited property listings from Bayut.com — the UAE's largest real estate platform. Get detailed property...
  • Export Airbnb Calendar — Scrape property listings and market data from Airbnb for market research, price monitoring, and investment analysis.
  • Funda Netherlands Real Estate Scraper — Scrape property listings from Funda.nl — the largest real estate platform in the Netherlands. Supports buy and rent,...
  • Furnished Finder Fast — Scrape property listings and market data from Furnished Finder for market research, price monitoring, and investment analysis.
  • Extract Furnished Finder Hosts — Scrape property listings and market data from Furnished Finder for market research, price monitoring, and investment analysis.
  • FurnishedFinder — Scrape property listings and market data from Furnished Finder for market research, price monitoring, and investment analysis.
  • Hemnet.se Scraper - Swedish Real Estate Listings — Scrape property listings from Hemnet.se including for-sale, upcoming, and sold homes. Search by URL or location...
  • Immobiliare Italy Real Estate Scraper — Scrape property listings and market data from real estate portals for market research, price monitoring, and investment analysis.
  • Immobilienscout24 — Scrape property listings and market data from real estate portals for market research, price monitoring, and investment analysis.
  • Immobilienscout24-scraper — Scrape property listings and market data from real estate portals for market research, price monitoring, and investment analysis.
  • Immoweb Scraper - Belgium Property Listings — Scrapes property listings from Immoweb.be. Supports search result extraction with optional property detail enrichment.
  • Immowelt Property Scraper — The Immowelt Scraper helps you extract unlimited real estate listings from Immowelt with complete details including...
  • Immowelt Scraper — The Immowelt Scraper helps you extract unlimited real estate listings from Immowelt with complete details including...
  • Land.com Scraper — Scrape property listings and market data from Land.com for market research, price monitoring, and investment analysis.
  • Outdoorsy Scraper — Scrape property listings and market data from Outdoorsy for market research, price monitoring, and investment analysis.
  • Propertyfinder Scraper — Scrape property listings and market data from Property Finder for market research, price monitoring, and investment analysis.
  • Redfin Scraper — Scrape property listings and market data from Redfin for market research, price monitoring, and investment analysis.
  • Rightmove Scraper — Scrape property listings and market data from Rightmove for market research, price monitoring, and investment analysis.
  • RVshare Scraper — Scrape property listings and market data from RVshare for market research, price monitoring, and investment analysis.
  • Unlimited Redfin Scraper — Scrape property listings and market data from Redfin for market research, price monitoring, and investment analysis.
  • Zillow Detail Scraper — Scrape property listings and market data from Zillow for market research, price monitoring, and investment analysis.
  • Zillow Scraper — Scrape property listings and market data from Zillow for market research, price monitoring, and investment analysis.
  • Zoopla Scraper — Scrape property listings and market data from Zoopla for market research, price monitoring, and investment analysis.

✈️ Travel & Hospitality

Monitor rentals, bookings, and travel listings at scale.

  • CarMax Scraper — Scrapes used car listings from CarMax.com with search URL, zip code filtering, and pagination support.
  • Ticketmaster Scraper — Collect rental and travel listings from Ticketmaster for pricing intelligence and availability tracking.

🛒 E-commerce

Scrape products, prices, and marketplace data for competitive research.

  • Amazon Product Scraper — Scrape products, prices, and seller data from Amazon for competitor monitoring, pricing, and product research.
  • Amazon Search Scraper — Scrape products, prices, and seller data from Amazon for competitor monitoring, pricing, and product research.
  • Daraz — Scrape products, prices, and seller data from Daraz for competitor monitoring, pricing, and product research.
  • Etsy Scraper — Scrape products, prices, and seller data from Etsy for competitor monitoring, pricing, and product research.
  • Homedepot Scraper — HomeDepot Products Scraper lets you extract product data from homedepot.com using a collection URL and delivery ZIP....
  • Otodom Scraper - Polish Real Estate Listings — Scrapes property listings from Otodom.pl, Poland's leading real estate marketplace. Supports filters for transaction...

📩 Lead Generation

Find business contacts, leads, and company data for sales and outreach.

  • Company Service Finder — The Company Service Finder uses AI to extract and analyze company services from Google Search & Maps. Get detailed...
  • Doctify Scraper — Doctify Scraper lets you extract doctor and practice data from doctify.com using a search results URL. Collect...
  • FindLaw Law Firm Scraper - Attorney & Law Firm Data Extraction — Scrape law firm profiles from FindLaw.com. Extract detailed attorney and firm information including contact details,...
  • Google Maps Scraper — Find business leads and contact details from Google Maps for outbound sales, prospecting, and CRM enrichment.
  • Website Services Finder — Automatically extract and analyze company services from any business website using advanced AI. Choose from 5 AI...
  • Zillow Agents — Find business leads and contact details from Zillow for outbound sales, prospecting, and CRM enrichment.
  • Zillow Agents Phone — Find business leads and contact details from Zillow for outbound sales, prospecting, and CRM enrichment.

⭐ Reviews & Ratings

Monitor reviews and reputation data across review platforms.

  • Airbnb Listing Reviews — Collect reviews and ratings from Airbnb for reputation monitoring and customer insights.
  • BBB Scraper — Collect reviews and ratings from BBB for reputation monitoring and customer insights.
  • Rottentomatoes Reviews Scraper — Collect reviews and ratings from Rotten Tomatoes for reputation monitoring and customer insights.
  • Trustpilot Reviews Scraper — Collect reviews and ratings from Trustpilot for reputation monitoring and customer insights.

🍔 Food & Delivery

Extract restaurant, grocery, and delivery platform data.

  • Instacart Scraper — Scrape menus, stores, and delivery data from Instacart for data-driven research and automation.
  • Publix Scraper — Scrape menus, stores, and delivery data from Publix for data-driven research and automation.

🛠️ Developer Tools

General-purpose scraping and automation tools.

  • Web Crawler — This web crawler is designed to provide users with complete flexibility by allowing them to use their **own...

Understanding Proxies:

When scraping data or browsing anonymously, proxies are essential. They act as intermediaries, masking your original IP address and allowing you to send requests from another location.

Why Use Proxies?

  • Avoid IP Blocks: By routing requests through proxies, you prevent the target website from recognizing your IP as a scraper or spammer.
  • Access Geo-restricted Content: Proxies let you access content or websites restricted by location.
  • Enhance Anonymity: Hide your actual IP, ensuring privacy while scraping or browsing.

Types of Proxies

  1. Residential Proxies
    • Real IP addresses provided by ISPs to home users.
    • They mimic regular users, making them harder to detect.
    • Best for: Long-term, undetectable scraping, and avoiding blocks.
  2. Data Center Proxies
    • IP addresses from servers in data centers.
    • Faster and cheaper than residential proxies but easier to detect and block.
    • Best for: High-speed scraping, but with a higher risk of detection.
  3. Mobile Proxies
    • IPs provided by mobile carriers (3G/4G/5G networks).
    • Very difficult to detect, as they appear as regular mobile users.
    • Best for: Mobile-related scraping or avoiding sophisticated blocks.

Rotating Proxies vs. Straight Proxies

  • Rotating Proxies: Every request you send goes through a different proxy, making it harder for websites to detect patterns.
  • Straight Proxies: All requests are sent through the same proxy, making it easier to track your IP.

About Rigel Bytes

Rigel Bytes specializes in web scraping, automation, and data analytics. We help businesses extract and leverage valuable data for informed decision-making.

Contact Us

Ready to unlock the power of data? Reach out to us at (contact@rigelbytes.com) or book an appointment with us to learn more about how we can help you achieve your data goals.

Detailed Data

[
{
"listingId": "926ec45f-5f2e-4758-9869-4496095498db",
"listingUrl": "https://www.cars.com/vehicledetail/926ec45f-5f2e-4758-9869-4496095498db/",
"year": 2026,
"make": "Lotus",
"model": "Emira",
"trim": "V6 SE",
"title": "2026 Lotus Emira V6 SE",
"price": 124200.0,
"listPrice": "$124,200",
"mileage": 5,
"stockType": "New",
"exteriorColor": "Magma Red",
"interiorColor": "Black",
"fuelType": "Gasoline",
"engine": "3.5L V6 24V MPFI DOHC Supercharged",
"transmission": "6-Speed Manual",
"drivetrain": "Rear-wheel Drive",
"dealerName": "Star Motor Cars",
"dealerCity": "Houston",
"dealerState": "TX",
"vin": "SCCLEJAX1THB10627",
"certifiedPreowned": false,
"imageUrl": "https://platform.cstatic-images.com/large/in/v2/45426ca6-b9ca-5b1b-8938-d0f00735b86a/a366679a-39d6-4050-b358-3224432d77e4/kfJxUXOTCMiKKRp3g7cpBd6eLGo.jpg"
},
{
"listingId": "26c99371-b4a6-4385-b7f2-3ae91d4d4bcb",
"listingUrl": "https://www.cars.com/vehicledetail/26c99371-b4a6-4385-b7f2-3ae91d4d4bcb/",
"year": 2026,
"make": "Nissan",
"model": "Armada",
"trim": "NISMO",
"title": "2026 Nissan Armada NISMO",
"price": 75149.0,
"msrp": 84185.0,
"listPrice": "$75,149",
"mileage": 11,
"stockType": "New",
"exteriorColor": "White / Black",
"interiorColor": "Charcoal",
"fuelType": "Gasoline",
"engine": "3.5L V6 24V GDI DOHC Twin Turbo",
"transmission": "Automatic",
"drivetrain": "Four-wheel Drive",
"dealerName": "Southern Team Hyundai Nissan Subaru Volkswagen",
"dealerCity": "Roanoke",
"dealerState": "VA",
"vin": "JN8AY3FBXT9140276",
"certifiedPreowned": false,
"imageUrl": "https://platform.cstatic-images.com/large/in/v2/e7336d3a-93a5-4b9e-962b-8a0a5c2a0396/942b3dc0-3064-49d5-a40f-43b019a2e0a6/HXoLcN0c5EKdQA9k_L6hz6XjXBY.jpg"
},
{
"listingId": "4262aab4-d83e-4289-be50-1c76ecce223c",
"listingUrl": "https://www.cars.com/vehicledetail/4262aab4-d83e-4289-be50-1c76ecce223c/",
"year": 2026,
"make": "Honda",
"model": "Passport",
"trim": "AWD TrailSport Elite",
"title": "2026 Honda Passport AWD TrailSport Elite",
"price": 55207.0,
"msrp": 54600.0,
"listPrice": "$55,207",
"mileage": 12,
"stockType": "New",
"exteriorColor": "ASH_GREEN_METALLIC",
"interiorColor": "Black",
"fuelType": "Gasoline",
"engine": "3.5L V-6 gasoline direct injection, DOHC, i-VTEC (w/VTC) variabl",
"transmission": "10-Speed Automatic",
"drivetrain": "All-wheel Drive",
"dealerName": "Curry Honda Chicopee",
"dealerCity": "Chicopee",
"dealerState": "MA",
"vin": "5FNYF9H81TB079863",
"certifiedPreowned": false,
"imageUrl": "https://platform.cstatic-images.com/large/in/v2/68fe76ea-08f9-5b0c-84c6-f9ccae6cf31a/14af1258-192a-43e1-b515-b956bb6aa201/U_X2Pf5-2qEaftyj7KPYC2jhj-w.jpg"
}
]