API Catalog E-Commerce APIs

E-Commerce APIs

Products, pricing & inventory

E-commerce and product data APIs. Product information, pricing, inventory, and marketplace integration.

Product Search

Popular

Search product databases across multiple marketplaces. Find products by name, brand, or keywords.

POST /api/v1/commerce/product-search
{ "query": "wireless headphones",
  "brand": "Sony",
  "limit": 10 }

// Response
{ "results": [
    { "name": "Sony WH-1000XM5",
      "price": 349.99,
      "rating": 4.8,
      "in_stock": true }
  ],
  "total": 24 }
Multi-Source Filters Pagination

Price Comparison

Compare prices across retailers. Find the best deals and track price history.

GET /api/v1/commerce/price-compare
?upc=887276372693

// Response
{ "product": "Samsung Galaxy S24",
  "prices": [
    { "retailer": "Amazon", "price": 799.99 },
    { "retailer": "BestBuy", "price": 849.99 },
    { "retailer": "Walmart", "price": 799.00 }
  ],
  "lowest": 799.00 }
Multi-Retailer Price History Alerts

Barcode Lookup

Look up product details by UPC, EAN, or ISBN. Get comprehensive product information.

GET /api/v1/commerce/barcode/012345678905

// Response
{ "upc": "012345678905",
  "name": "Organic Almond Butter",
  "brand": "Nature's Best",
  "category": "Food & Beverage",
  "weight": "16 oz",
  "manufacturer": "NB Foods Inc" }
UPC/EAN ISBN ASIN

Inventory Check

Real-time stock availability across warehouses and retail locations.

POST /api/v1/commerce/inventory
{ "sku": "WH-1000XM5-BLK",
  "zip": "90210" }

// Response
{ "sku": "WH-1000XM5-BLK",
  "in_stock": true,
  "quantity": 47,
  "locations": [
    { "store": "LA Downtown", "qty": 12 },
    { "store": "Beverly Hills", "qty": 8 }
  ] }
Real-Time Multi-Location Webhooks

Product Reviews

Aggregate product reviews from multiple sources. Sentiment analysis and ratings summary.

GET /api/v1/commerce/reviews
?product_id=B0C5X2LMWN

// Response
{ "avg_rating": 4.6,
  "total_reviews": 2847,
  "sentiment": "positive",
  "highlights": [
    "Great sound quality",
    "Comfortable fit"
  ],
  "concerns": ["Battery life"] }
Aggregation Sentiment Highlights

Category Mapping

Map products to standardized categories. Cross-platform taxonomy mapping.

POST /api/v1/commerce/categorize
{ "title": "Sony WH-1000XM5 Headphones",
  "description": "Wireless noise-canceling" }

// Response
{ "category": "Electronics",
  "subcategory": "Audio",
  "type": "Headphones",
  "google_category": "Electronics > Audio > Headphones",
  "amazon_node": "12097479011" }
Google Amazon eBay

SKU Generator

Generate unique product SKUs. Customizable formats with collision detection.

POST /api/v1/commerce/generate-sku
{ "brand": "Sony",
  "category": "Headphones",
  "color": "Black",
  "format": "BRAND-CAT-COLOR-###" }

// Response
{ "sku": "SNY-HDP-BLK-001",
  "unique": true,
  "format_used": "BRAND-CAT-COLOR-###",
  "alternatives": [
    "SNY-HDP-BLK-002",
    "SNY-HDP-BLK-003"
  ] }
Custom Format Collision Check Batch

Ready to integrate E-Commerce APIs?

Get your API key and start building your e-commerce integrations in minutes.