List Anything. Find Everything.

Post free ads or list your business in just a few clicks.

Login / Register
Quick Ad Posting

Post anything from electronics to vehicles instantly.

Free Business Listing

Make your business visible on Google-like listings.

Location Based Search

Find ads and businesses near you.

Top Categories

Vehicles
Properties
Electronics
Jobs

Latest Listings

Listing 1
Used iPhone 13 Pro

Rs. 52,000 • Guwahati

View Details
Listing 2
Commercial Space in Dispur

Rs. 18,000/mo • Dispur

View Details
Listing 3
Hero Splendor+ 2023

Rs. 65,000 • Jorhat

View Details

What Our Users Say

"Clomint helped me sell my bike in just 3 days. Loved the experience!"

— Rahul, Guwahati

"I listed my local shop and started getting calls the same week. Amazing!"

— Priya, Jorhat

"Super easy to use and I found a tenant for my flat within 5 days!"

— Arjun, Dibrugarh

Stay Updated with Clomint

Get latest listings and deals straight to your inbox

document.addEventListener("DOMContentLoaded", function () { const csrfToken = document.querySelector('meta[name="csrf-token"]').getAttribute("content"); // LOGIN document.getElementById("loginForm").addEventListener("submit", function (e) { e.preventDefault(); fetch("/login", { method: "POST", headers: { "X-CSRF-TOKEN": csrfToken }, body: new FormData(this) }) .then(res => res.json()) .then(data => { if (data.success) { location.reload(); } else { alert(data.message || "Login failed!"); } }); }); // REGISTER document.getElementById("registerForm").addEventListener("submit", function (e) { e.preventDefault(); fetch("/register", { method: "POST", headers: { "X-CSRF-TOKEN": csrfToken }, body: new FormData(this) }) .then(res => res.json()) .then(data => { if (data.success) { location.reload(); } else { alert(data.message || "Registration failed!"); } }); }); });