AUTO-API.COM
Dubizzle.com Logo

Dubizzle APIScraper & Parser

Dubizzle API - access Dubizzle data: prices, specs, photos, GCC specifications. REST API and daily exports of UAE cars for your business needs.

Dubizzle API

Access UAE's biggest car marketplace with our API. Pull clean car data from Dubai and Emirates for analytics and market research.

API

Receive alerts for new UAE car listings.

Daily Exports

Daily export of all active ads for market analysis.

Complete Data

Get all car data through the API: price, specs, diagnostics, history, modifications from every listing.

Get API AccessAccess provided within 2 minutes

Base URL

https://{access_name}.auto-api.com/api/v2/dubizzle

Authorization: api_key parameter

Workflow

1
/filtersget available filter values
2
/offersget listings (with or without filters) - use for initial data load
3

For updates (to keep data up-to-date after initial load):

/change_id?date=...get starting ID for changes feed
/changes?change_id=...get all changes in the database starting from ID
4
/offerget details of a specific listing by inner_id

How to integrate effectively:

1. Start with a full data pull using /offers - traverse all pages to establish your initial inventory

2. After the initial load, use /changes at regular intervals to sync additions, updates, and removals with your system

3. For displaying listings, call /offers with specific filter criteria (brand, model, price, year, location) and pagination

GET/filters

Returns all possible values for filtering

https://{access_name}.auto-api.com/api/v2/dubizzle/filters?api_key=YOUR_API_KEY

Response:

{
  "mark": {
    "Nissan": {
      "model": {
        "Patrol": {
          "configuration": {
            "V8": { "complectation": ["SE", "LE", "Platinum"] }
          }
        }
      }
    },
    "Toyota": {
      "model": {
        "Land Cruiser": {
          "configuration": {
            "GXR": { "complectation": ["GXR", "VXR", "GR Sport"] }
          }
        }
      }
    }
  },
  "transmission_type": ["MT", "AT"],
  "color": ["White", "Red", "Champagne", "Silver", "Green", "Gray", "Purple", "Blue", "Black", "Yellow"],
  "body_type": ["Crossover", "SUV", "Station Wagon", "Sedan", "Hatchback", "Sports Car", "Convertible", "Pick Up", "Bus", "Truck"],
  "engine_type": ["Gasoline", "BEV", "PHEV", "Diesel", "HEV", "REEV"]
}

GET/offers

List of listings with pagination and filters

Parameters:

  • page (required) - page number
  • mark, model, configuration, complectation - filters (case-insensitive)
  • transmission_type, color, body_type, engine_type - filters (case-insensitive)
  • year_from, year_to - year range filter
  • km_age_from, km_age_to - mileage range filter
  • price_from, price_to - price range filter (in AED)
https://{access_name}.auto-api.com/api/v2/dubizzle/offers?api_key=YOUR_API_KEY&page=1https://{access_name}.auto-api.com/api/v2/dubizzle/offers?api_key=YOUR_API_KEY&page=1&mark=Nissan&color=white

Response:

{
  "result": [
    {
      "id": 2648717,
      "inner_id": "40307747",
      "change_type": "added",
      "created_at": "2025-08-14T19:39:18.380Z",
      "data": {
        "id": 1380988,
        "inner_id": "40307747",
        "url": "https://dubai.dubizzle.com/motors/used-cars/kia/seltos/...",
        "mark": "Kia",
        "model": "Seltos",
        "configuration": "Gasoline 1.6 Turbo 2WD",
        "complectation": "Prestige",
        "year": 2020,
        "color": "White",
        "price": 48000,
        "km_age": 48186,
        "engine_type": "Gasoline",
        "transmission_type": "AT",
        "body_type": "Crossover",
        "address": "Dubai Marina",
        "seller_type": "DEALER",
        "is_dealer": true,
        "section": "used",
        "seller": "boripiri",
        "salon_id": "05062438168",
        "description": "Excellent condition Kia Seltos 2020...",
        "displacement": 1591,
        "offer_created": "2025-08-14",
        "images": ["https://dbzimages.dubizzle.com/images/..."],
        "extra": {}
      }
    }
  ],
  "meta": { "page": 1, "next_page": 2, "limit": 20 }
}

Data fields:

  • id - internal database ID
  • inner_id - listing ID on the platform
  • url - link to the listing
  • mark - car brand
  • model - car model
  • configuration - configuration
  • complectation - complectation/trim
  • year - production year
  • color - color
  • price - price in AED
  • km_age - mileage in km
  • engine_type - engine type
  • transmission_type - transmission type
  • body_type - body type
  • address - address
  • seller_type - seller type
  • is_dealer - dealer flag (true/false)
  • section - section
  • seller - seller
  • salon_id - dealer ID
  • description - description
  • displacement - engine displacement (cc)
  • offer_created - listing creation date
  • images - array of image URLs

GET/change_id

Get first change ID by date (for use in /changes)

Parameters:

  • date (required) - date in yyyy-mm-dd format
https://{access_name}.auto-api.com/api/v2/dubizzle/change_id?api_key=YOUR_API_KEY&date=2025-01-15

Response:

{ "change_id": 4527891 }

Use the returned value as the change_id parameter in /changes

GET/changes

Changes feed (added/changed/removed)

Parameters:

  • change_id (required) - starting from which change ID
https://{access_name}.auto-api.com/api/v2/dubizzle/changes?api_key=YOUR_API_KEY&change_id=1

Response:

{
  "result": [
    {
      "id": 456,
      "inner_id": "40307747",
      "change_type": "added",    // added - new listing
      "created_at": "2025-01-15T10:30:00Z",
      "data": { ... }            // full listing data
    },
    {
      "id": 457,
      "inner_id": "40307748",
      "change_type": "changed",  // changed - price update
      "created_at": "2025-01-15T10:31:00Z",
      "data": { "new_price": 45000 }
    },
    {
      "id": 458,
      "inner_id": "40307749",
      "change_type": "removed",  // removed - listing deleted
      "created_at": "2025-01-15T10:32:00Z"
    }
  ],
  "meta": { "cur_change_id": 1, "next_change_id": 21, "limit": 20 }
}

GET/offer

Single listing by inner_id

Parameters:

  • inner_id (required)
https://{access_name}.auto-api.com/api/v2/dubizzle/offer?api_key=YOUR_API_KEY&inner_id=40307747

Response: data object (same as in /offers, but without result wrapper)

Data Retention Policy

Export files are securely stored for at least 3 days.

API Availability Schedule

Fresh daily data exports are available for download every day.

CSV Data Format

CSV automotive data files use the pipe delimiter (|) as the column separator for compatibility.

URL Structure:

https://{access_name}.auto-api.com/{date}/{file_name}

Request Parameters:

  • access_name - access_name - your unique assigned subdomain identifier.
  • date - date - target date in yyyy-mm-dd format (e.g., 2025-09-06).
  • file_name - file_name - name of the export file with its extension.

Available Formats:

  • CSV - all_active.csv, new_daily.csv, removed_daily.csv
  • JSON - all_active.json, new_daily.json, removed_daily.json
  • Excel - all_active.xlsx, new_daily.xlsx, removed_daily.xlsx

cURL API Request Example

curl -L -X GET 'https://{access_name}.auto-api.com/yyyy-mm-dd/all_active.csv' \
  -H 'Authorization: Basic XXX' \
  -o daily_car_data.csv

Wget Download Command

wget --method GET \
  --header 'Authorization: Basic XXX==' \
  'https://{access_name}.auto-api.com/yyyy-mm-dd/all_active.csv'
Platform

Dubizzle is the UAE's top car marketplace since 2005. With over 40,000 active listings, it links buyers and sellers from budget cars to luxury vehicles. All major brands and models are available on this platform, making it the main destination for car trading in the Middle East.

Dubizzle focuses on local market needs. Each car listing shows key details like Gulf, American, or European specs, customs status, and registration info. You also get maintenance records and inspection reports for full details.

The Dubizzle API gives direct access to this car data. Track price differences across areas (Business Bay cars cost 10-15% more than Ras Al Khaimah), monitor market trends, and analyze regional buying patterns through the API without building complex systems.

Get real-time alerts on new listings and price changes. The API tracks market movements as they happen, helping you spot trends and opportunities in the UAE car market.

Reply in 2 min