OLX App Download For Your Classified Ad In India

[vc_row][vc_column][vc_tta_tabs style=”modern” active_section=”1″][vc_tta_section title=”About” tab_id=”aboutf856-8f341c61-4c65″][vc_column_text]

OLX is the world’s leading classifieds platform in growth markets and is available in more than 50 countries and over 50 languages. OLX connects local people to buy, sell or exchange used goods and services by making it fast, easy and free for anyone to post a listing through their mobile phone or on the web.

OLX India App Download

OLX is the world’s leading classifieds platform in growth markets and is available in more than 50 countries and over 50 languages. OLX connects local people to buy, sell or exchange used goods and services by making it fast, easy and free for anyone to post a listing through their mobile phone or on the web.

So many people in local markets around the world use OLX’s online marketplace to find and sell a wide range of products including furniture, musical instruments, sporting goods, cars, kids and baby items, motorcycles, cameras, mobile phones, property and much more. Operating in fast-growing markets around the globe, helps people improve their lives through smart person-to-person trade.

How to use OLX?

If you want to sell any products

Step 1: Capture the product’s images properly and upload it.

Step 2: Give the title and description of the product.

Step 3: Select a category of products and give the amount.

Step 4: submit the post.

After submited OLX verifying your ads and if proper than Ads makes it live.

If you buy any product

Step 1: Search relevant ads.

Step 2: read ad specification.

Step 3: call or chat with the seller.

Looking to sell your car or upgrade your mobile? Or just on the lookout for great deals? Then OLX is the app for you! With OLX you can sell anything with ease and in no time. You can also discover what others around you are selling in your neighborhood.

To give you an idea, here are some of the awesome things you can do with the OLX App:
  • Sell your unwanted items quickly, straight from your phone.
  • Find verified sellers in your neighborhood and get to discover great deals.
  • Chat with sellers directly to negotiate your deals from the safety of your home.
  • Easily Manage and edit your ads while on the move.
  • Get personalized alerts and recommendations based on your interests.

More about our top categories:

Mobiles

This is the most popular category and we’ve got everything from brands like Apple iPhone, Redmi Y2, Samsung Galaxy, One Plus 6T, Huawei and Nokia to local brands like QMobile, Oppo, Rivo and many more. With OLX you can sell your mobile in minutes and upgrade too by choosing your favorite brand from the wide selection and more, accessories – memory cards, earphones, chargers, power banks.

Cars and Bikes

Selection of Cars and Bikes for sale will make your heart go ‘vroom vroom’! Whether you’re looking for sleek saloons like Honda Civic or Toyota Corolla, or popular hatchbacks like Suzuki Swift or Toyota Vitz or tough SUVs like Prado, Land Cruisers and Jeeps; we’ve got you covered. We also have a selection of heavy bikes and not so heavy bikes like Honda 125, in addition to Vespa scooters and bicycles.

Electronics

Decluttering your home while making money more than what anyone can ask for. You can do anything from selling your unused electronics and appliances to buying furniture to revamp your place! You will find top brands in TVs, laptops, computers, games, refrigerators, water purifiers, washing machines, sofa sets, mattresses, bean bags, household appliances and much more.

Real Estate

Look for an apartment, hotel room or guest house in your favorite neighborhood with quick search. With a wide-ranging selection of listings from dealers and individual landlords, you are sure to find your perfect home on OLX without paying commission.
So why wait? Just download the OLX app today to become a part of India´s largest online marketplace and connect with thousands of buyers and sellers near you.

Fashion

Formal attire, vacation wear to casual and daily wear – shirts for men, sarees & gowns for women, watches, jewelry, shoes & footwear. Also, kid’s clothes, footwear, toys, bags, bottles & more.

[/vc_column_text][/vc_tta_section][vc_tta_section title=”Alternatives” tab_id=”1613204936455-cd1a2326-6b56f856-8f341c61-4c65″][vc_column_text]

  • Geebo
  • DomesticSale
  • Classified Ads
  • Oodle
  • eBay Classifieds
  • Yakaz

[/vc_column_text][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]

OLX App Overview

[/vc_column_text][vc_single_image image=”57142″][vc_column_text css=”.vc_custom_1635140112900{margin-top: 10px !important;}”]

Technical Specification

Version
14.37.002
File Size25 MB
LanguagesEnglish
LicenseFree
Developer

[/vc_column_text][/vc_column][/vc_row]

// Constants for DOM elements const dropdownTriggers = document.querySelectorAll('.dz-menu-item.dropdown'); const dropdownContent = document.querySelector('.dz-dropdown-content'); const dropdownPanels = document.querySelectorAll('.dz-dropdown-panel'); const header = document.querySelector('.dz-header-wrap');// State to track the currently open menu item element let activeDropdownElement = null; let closeTimer = null; // Timer for delayed closing// Function to close all dropdowns function closeAllDropdowns() { if (closeTimer) { clearTimeout(closeTimer); closeTimer = null; } // Only proceed if the elements exist if (dropdownContent) { dropdownContent.classList.remove('open'); } dropdownPanels.forEach(panel => panel.classList.remove('active')); dropdownTriggers.forEach(item => item.classList.remove('active')); activeDropdownElement = null; }// Function to open a specific dropdown function openDropdown(item, targetPanel) { if (closeTimer) { clearTimeout(closeTimer); closeTimer = null; } // 1. Close all others closeAllDropdowns(); // 2. Open the new one item.classList.add('active'); targetPanel.classList.add('active'); if (dropdownContent) { dropdownContent.classList.add('open'); } activeDropdownElement = item; }// Event listener for each dropdown menu item dropdownTriggers.forEach(item => { item.addEventListener('click', function(e) { e.preventDefault(); const panelName = this.getAttribute('data-panel'); const targetPanel = document.querySelector(`.${panelName}`); if (!targetPanel) return;const isCurrentlyActive = this === activeDropdownElement;if (isCurrentlyActive) { // If the same dropdown is clicked, close it immediately. closeAllDropdowns(); } else { // Open the new dropdown openDropdown(this, targetPanel); } }); });/* --- MOUSE EVENTS FOR STABILITY FIX --- */ if (header) { // 1. When the mouse leaves the entire header area (menu + dropdown bar), start a timer to close it. header.addEventListener('mouseleave', () => { // Only initiate close if a dropdown is currently active if (activeDropdownElement) { // Set a delay (e.g., 300ms) to allow the user to move the mouse slightly closeTimer = setTimeout(closeAllDropdowns, 300); } });// 2. If the mouse re-enters the header area before the timer fires, cancel the close. header.addEventListener('mouseenter', () => { if (closeTimer) { clearTimeout(closeTimer); closeTimer = null; } }); }// 3. Close when clicking anywhere outside the header (as a fallback) document.addEventListener('click', (e) => { // Check if header exists and if the click is outside the header AND a dropdown is open if (header && !header.contains(e.target) && activeDropdownElement) { closeAllDropdowns(); } });// Initial setup: ensure all are closed on load document.addEventListener('DOMContentLoaded', closeAllDropdowns); window.addEventListener('load', closeAllDropdowns);
Scroll to Top