Skip to main content

What is the Hosted Gateway?

The Better Data Hosted Gateway is a fully-managed, production-ready version of the LLM Gateway with enterprise features for multi-vendor marketplaces.

Fully Managed

99.9% SLA, automatic scaling, and 24/7 monitoring

Multi-Vendor

Aggregate products from multiple vendors with deduplication

Competitive Ranking

10-factor algorithm ranks products by price, shipping, and authenticity

Advanced Analytics

Attribution, conversion tracking, and A/B testing

Open Source vs Hosted

FeatureOpen SourceHosted
DeploymentSelf-hostedFully managed
Setup Time10 minutesInstant
VendorsSingle storeMulti-vendor marketplace
Product Deduplication✅ Fuzzy + GTIN + AI
Competitive Ranking✅ 10-factor algorithm
Signal Tags✅ Blockchain authentication
Attribution AnalyticsBasicAdvanced
SLANone99.9%
SupportCommunityPriority
PricingFreeFrom $99/month

Key Features

🏪 Multi-Vendor Marketplace

Connect unlimited vendors via Shopify, Square, or custom integrations:
// Each vendor gets their own account
POST /api/vendors/connect
{
  "platform": "shopify",
  "domain": "vendor1.myshopify.com"
}

// Products automatically aggregated
GET /api/products/search?q=headphones
// Returns products from all vendors, ranked competitively

🎯 Product Deduplication

Three-layer matching prevents duplicate listings:
  1. Fuzzy Matching: Title + brand similarity (90%+ match)
  2. GTIN Matching: UPC, EAN, ISBN
  3. AI Matching: Claude determines if products are the same
// Automatic deduplication
Vendor A: "Apple AirPods Pro (2nd Gen)"
Vendor B: "AirPods Pro 2nd Generation"
Matched as same product

// Users see:
AirPods Pro (2nd Gen)
  - Vendor A: $249.00
  - Vendor B: $239.00Best price!

📊 Competitive Ranking

10-factor algorithm ranks products:
FactorWeight
Price25%
Shipping cost15%
Delivery speed15%
Product rating10%
Seller rating10%
In stock10%
Signal Tag (authenticated)10%
Review count5%

🔐 Signal Tag Authentication

Blockchain-verified product authenticity:
Product with Signal Tag = +10% ranking boost

Verified attributes:
✓ Brand authorization
✓ Authentic inventory
✓ GTIN verified
✓ Counterfeit protection

📈 Attribution Analytics

Track which LLM provider drives conversions:
// First-touch attribution
User journey:
  1. Claude searchAdd to cart
  2. ChatGPTComplete checkout
     Attribution: Claude (first-touch)

// Last-touch attribution
  Attribution: ChatGPT (last-touch)

// Linear attribution
  Claude: 50%
  ChatGPT: 50%

Architecture


Pricing

Cloud Free

$0/month
  • 100 req/hr
  • BetterDataRegistry access
  • Basic Analytics
  • Community Support

Hosted

$19/month
  • 1,000 req/hr
  • Pro Provisioning
  • Managed Registry
  • Starter Analytics

Marketplace

$99/month
  • 5,000 req/hr
  • ML-Ranked Discovery
  • Private Federation
  • Realtime Analytics

SCM Pro

$499/month
  • 20,000 req/hr
  • Global Federation
  • Automated Verification
  • Priority Support
  • Dedicated SLA

Getting Started

1

Sign Up

Create your account at app.betterdata.io/signup
2

Get API Key

Generate your API key in the dashboard
3

Connect Vendors

Use OAuth to connect vendor stores (Shopify, Square)
4

Configure LLMs

Add API credentials for Claude, ChatGPT, Grok
5

Go Live

Start sending traffic to your hosted gateway

API Endpoints

Search Products

GET https://gateway.betterdata.io/v1/products/search
Authorization: Bearer YOUR_API_KEY

?q=wireless headphones
&limit=10
&vendors=vendor1,vendor2

Get Product Details

GET https://gateway.betterdata.io/v1/products/:id
Authorization: Bearer YOUR_API_KEY

Add to Cart

POST https://gateway.betterdata.io/v1/cart/add
Authorization: Bearer YOUR_API_KEY

{
  "productId": "prod_123",
  "vendorId": "vendor_456",
  "quantity": 2,
  "sessionId": "session_789"
}

Next Steps