Classifieds Board Development

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Developing Classifieds Board

Classifieds board is a platform for posting ads about sale/purchase/rental between private individuals or companies. Benchmarks: Avito, OLX, Craigslist. Key features: users post listings themselves, deals happen outside platform (or via integrated payments), platform earns on promotion.

Listing Structure

  • Type (selling / buying / renting / looking / services)
  • Title, description
  • Category + subcategory
  • Dynamic attributes (by category: for cars — make/model/year, for real estate — area/floor)
  • Price (type: fixed, negotiable, free)
  • Photos (up to N)
  • Contact data (phone, name, optionally email)
  • Location (city / district / map point)
  • Active period (30 days, then archive)

Dynamic Attributes

Each category has specific fields. Storage:

CREATE TABLE category_attributes (
  id, category_id, name, type ENUM('text', 'number', 'select', 'boolean'),
  options JSONB, -- for select: list of options
  required BOOLEAN, searchable BOOLEAN
);

CREATE TABLE listing_attributes (
  listing_id, attribute_id,
  value_text, value_number, value_boolean
);

When creating listing, form is built dynamically based on category attributes.

Geolocation Search

Key feature: "listings near me" or "listings in Moscow, South Butovo".

-- PostGIS: listings within 10 km from point
SELECT l.*, ST_Distance(l.location::geography, $1::geography) AS dist
FROM listings l
WHERE ST_DWithin(l.location::geography, $1::geography, 10000)
  AND l.category_id = $2
  AND l.status = 'active'
ORDER BY dist;

Built-in Messenger

Buyer contacts seller through internal chat (not phone), so contacts aren't revealed until ready for deal. Chat tied to specific listing: "Your ad 'iPhone 14'". Implementation: WebSocket + PostgreSQL (messages) + Redis (presence).

Listing Moderation

Two approaches:

  • Pre-moderation — listing visible only after moderator check. Publication delay, but less spam.
  • Post-moderation — listing visible immediately, deleted after complaint. Faster, but fraud risk.

Auto-check: forbidden content detection (drugs, weapons), spam patterns, duplicate listings (same title + phone in last 7 days).

Monetization

  • Paid placement: listings in premium categories (auto, real estate) — paid
  • VIP bump: listing bumped to top for 24 hours
  • Highlighting: listing displayed with color border or badge
  • Turbo packages: set of several bumps at discount

Deal Safety

Platform can offer "Safe Deal" (escrow): buyer pays platform → seller ships → buyer confirms receipt → money transferred to seller. Stripe or YooKassa for escrow account.

Timeline

MVP (posting listings, search, filters, photos, contacts): 6–8 weeks. With messenger, geosearch, moderation, monetization: 3–5 months.