UBALDI Product Categorization API

Automate electronics and home appliance listings on UBALDI with AI-powered taxonomy classification. Built for manufacturers, distributors, and marketplace sellers targeting France's competitive discount electronics and électroménager destination.

{
  "product": "Lave-linge frontal 9kg",
  "marketplace": "ubaldi",
  "category": {
    "id": "ELECTROMENAGER_LAVAGE_LAVE_LINGE",
    "path": ["Électroménager", "Lavage", "Lave-linge", "Frontal"],
    "confidence": 0.98
  }
}
12+
Product Categories
98.1%
Classification Accuracy
38ms
Response Time
1.5M+
Products Categorized

Understanding UBALDI Electronics Taxonomy

UBALDI has carved a distinctive position in the French retail landscape as a discount destination for electronics, home appliances, and household goods. Operating primarily through e-commerce with strategic physical showroom presence, UBALDI attracts price-conscious French consumers seeking competitive pricing on major brand appliances and electronics. For manufacturers and marketplace sellers, mastering UBALDI's product taxonomy enables effective positioning within this value-oriented marketplace.

The UBALDI taxonomy reflects the retailer's focus on large household appliances (gros électroménager), small appliances (petit électroménager), consumer electronics, and computing products. Unlike specialty retailers that may offer premium curation, UBALDI emphasizes breadth of selection and competitive pricing, requiring categorization that supports comparison shopping and specification-based filtering that value-conscious consumers rely upon.

Gros électroménager represents UBALDI's core category strength, encompassing washing machines, dryers, refrigerators, freezers, ovens, cooktops, and dishwashers. These products require detailed attribute extraction including capacity measurements, energy efficiency ratings, installation types, and technical specifications. French consumers shopping large appliances expect to filter by these technical criteria, making comprehensive attribute mapping essential for product visibility.

Energy Efficiency Classification

Energy labels carry particular importance in UBALDI's appliance categories, with French consumers increasingly prioritizing energy efficiency for both environmental and cost-saving motivations. The taxonomy separates products by energy class, enabling filtered browsing that surfaces efficient appliances to environmentally conscious shoppers. Our API extracts energy ratings from product specifications and ensures correct energy class categorization.

Energy Efficiency Ratings:
A B C D

Products categorize into energy efficiency segments for filtered browsing

Washing machine categorization exemplifies the technical depth required for UBALDI classification. Products subdivide by loading type (frontal vs. top-loading), capacity in kilograms, spin speed in RPM, energy rating, and smart connectivity features. A lave-linge frontal 9kg 1400 tours must categorize with all these attributes correctly mapped for accurate search result placement and specification comparison.

Refrigeration products follow similarly detailed classification with distinctions between réfrigérateurs (refrigerators), congélateurs (freezers), and combined réfrigérateur-congélateur units. Subcategories separate by configuration (one-door, two-door, side-by-side, French door), total capacity, freezer capacity, and special features like ice makers, water dispensers, or smart connectivity.

Key Features for UBALDI Sellers

Technical Spec Parsing

Automatic extraction of technical specifications including dimensions, capacity, power ratings, and efficiency classes.

Energy Rating Recognition

Extraction and mapping of EU energy labels for appliances, enabling energy efficiency filtered categorization.

French Native

Full understanding of French electronics terminology, model naming conventions, and technical vocabulary.

Brand Intelligence

Recognition of major appliance brands including Bosch, Siemens, Samsung, LG, Whirlpool, and French brands.

Dimension Extraction

Automatic parsing of product dimensions and capacity specifications for installation compatibility filtering.

Warranty Handling

Recognition of warranty periods and manufacturer guarantees affecting product positioning.

Petit Électroménager Categories

Small household appliances span an enormous range of products from kitchen essentials to personal care devices. The taxonomy organizes petit électroménager by room and function, with kitchen appliances forming the largest segment. Coffee machines, blenders, food processors, toasters, kettles, and countless specialized kitchen devices each occupy distinct category positions within the cuisine hierarchy.

Coffee machine categorization alone requires understanding of multiple brewing technologies and form factors. Machines à café distinguish between espresso, filter, pod-based systems (Nespresso, Dolce Gusto, Tassimo), bean-to-cup automatics, and traditional moka pots. Our API recognizes these brewing type distinctions and categorizes coffee equipment into appropriate subcategories that match how French coffee enthusiasts browse and compare options.

Personal care appliances including hair dryers, straighteners, electric shavers, and grooming devices follow their own taxonomic structure within petit électroménager. These products categorize by device type, target user (men's grooming vs. women's styling), power specifications, and technology type. Premium personal care brands receive appropriate positioning within quality tier segments.

Consumer Electronics Classification

Television categorization requires screen size, display technology, resolution, and smart platform attribute extraction. The taxonomy distinguishes between LED, OLED, QLED, and emerging display technologies while organizing by screen diagonal measurement in centimeters. Smart TV capabilities, HDR support, refresh rates, and connectivity options all influence proper subcategory placement.

Audio equipment spans home theater systems, soundbars, portable speakers, headphones, and hi-fi components. Each product type maintains its own classification hierarchy with appropriate technical attribute requirements. Soundbars categorize by channel configuration, wireless connectivity, and compatibility with specific TV brands or smart home ecosystems.

Computing products including laptops, desktop computers, tablets, and accessories require detailed technical specification parsing. Processor type, RAM capacity, storage configuration, screen specifications, and intended use case all influence categorization. Gaming-oriented products receive distinct classification from business or home productivity devices based on specification profiles.

UBALDI Taxonomy Visualization

Integration Examples

import requests

def categorize_for_ubaldi(product_data):
    """Categorize electronics and appliances for UBALDI"""
    response = requests.post(
        "https://api.productcategorization.com/v1/categorize",
        headers={
            "Authorization": "Bearer YOUR_API_KEY",
            "Content-Type": "application/json"
        },
        json={
            "title": product_data["title"],
            "description": product_data["description"],
            "brand": product_data["brand"],
            "marketplace": "ubaldi",
            "language": "fr",
            "attributes": {
                "energy_class": product_data.get("energy_class"),
                "capacity": product_data.get("capacity"),
                "dimensions": product_data.get("dimensions")
            }
        }
    )
    return response.json()

# Example: Categorize appliances
products = [
    {"title": "Réfrigérateur combiné 350L No Frost", "brand": "Samsung", "energy_class": "A"},
    {"title": "Lave-vaisselle encastrable 14 couverts", "brand": "Bosch", "energy_class": "B"},
    {"title": "TV OLED 55 pouces 4K Smart TV", "brand": "LG"}
]

for product in products:
    result = categorize_for_ubaldi(product)
    print(f"{product['title']}: {result['category']['path']}")
const categorizeForUbaldi = async (productData) => {
  const response = await fetch(
    'https://api.productcategorization.com/v1/categorize',
    {
      method: 'POST',
      headers: {
        'Authorization': 'Bearer YOUR_API_KEY',
        'Content-Type': 'application/json'
      },
      body: JSON.stringify({
        title: productData.title,
        description: productData.description,
        brand: productData.brand,
        marketplace: 'ubaldi',
        language: 'fr',
        attributes: {
          energy_class: productData.energyClass,
          capacity: productData.capacity,
          dimensions: productData.dimensions
        }
      })
    }
  );
  return response.json();
};

// Process appliance catalog
const processCatalog = async (items) => {
  const results = await Promise.all(
    items.map(item => categorizeForUbaldi(item))
  );
  return results;
};
curl -X POST https://api.productcategorization.com/v1/categorize \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Four encastrable pyrolyse 72L",
    "brand": "Siemens",
    "marketplace": "ubaldi",
    "language": "fr",
    "attributes": {
      "energy_class": "A+",
      "capacity_liters": 72,
      "cleaning_type": "pyrolysis"
    }
  }'

Try UBALDI Categorization

Enter a French electronics or appliance title to see real-time classification

Cooking and Kitchen Appliances

Cuisson products including ovens, cooktops, range hoods, and microwaves require classification by cooking technology, fuel type, and installation format. Built-in versus freestanding distinctions fundamentally affect category placement, as consumers shopping for kitchen renovations require built-in equipment filtered separately from those seeking standalone appliances.

Cooktop categorization distinguishes between induction, ceramic, gas, and mixed-fuel configurations. Induction cooktops have emerged as the premium choice for French kitchens, requiring distinct categorization that positions these products appropriately within the technology hierarchy. Zone count, power specifications, and smart connectivity features provide additional classification dimensions.

Range hoods (hottes) categorize by installation type (wall-mounted, island, integrated), extraction capacity in cubic meters per hour, and noise levels. French kitchens increasingly demand powerful yet quiet extraction, making these technical specifications essential for filtered browsing. Our API extracts hood specifications and categorizes products with proper attribute mapping.

Installation and Delivery Considerations

Large appliance categorization on UBALDI must account for delivery and installation service requirements. Built-in appliances require professional installation, influencing how products display and what service options accompany purchases. The taxonomy reflects these installation requirements with distinct category paths for encastrable (built-in) versus pose libre (freestanding) products.

Dimension specifications carry particular importance for appliance categorization, as French consumers must verify products fit their available spaces. Standard French kitchen dimensions differ from American or other European markets, and the taxonomy organizes products by common dimension categories (60cm standard width, 90cm large format, etc.) enabling filtered browsing by size.

Connectivity and smart home integration have become increasingly important classification criteria. Products with WiFi connectivity, app control, or compatibility with major smart home platforms (Google Home, Alexa, HomeKit) receive appropriate attribute tagging. This enables filtering by smart features as French consumers increasingly seek connected appliances for their homes.

Frequently Asked Questions

Does the API extract energy efficiency ratings?

Yes, our API automatically extracts EU energy labels from product descriptions and specifications. Products categorize into appropriate energy class segments (A through G on the new EU label scale), enabling filtered browsing by efficiency rating.

How does it handle technical specifications?

The API parses technical specifications including capacity (kg, L), dimensions (cm), power (W), and performance metrics (RPM, dB). These extracted attributes enhance category placement and enable accurate specification-based filtering.

Can it distinguish built-in from freestanding?

Yes, the API recognizes installation type indicators including encastrable (built-in), intégrable (integrated), and pose libre (freestanding). This distinction is fundamental to UBALDI's appliance taxonomy and affects both category placement and service requirements.

Does it recognize major appliance brands?

Our brand database includes comprehensive coverage of appliance manufacturers from premium European brands (Miele, Siemens, Bosch) to value-focused options (Beko, Candy, Haier). Brand recognition influences appropriate tier positioning within UBALDI's competitive marketplace.

What about smart home connectivity?

The API identifies smart home features including WiFi connectivity, app compatibility, and integration with major platforms (Google Home, Amazon Alexa, Apple HomeKit). Connected appliances receive appropriate attribute tagging enabling smart feature filtering.

Related Marketplace Guides