commerce

Commerce

Marketplace Listing

Marketplace Listing is a commerce capability available through Shopify, Etsy, TikTok Shop and 1 more on Aweb. Create product listings across one or more marketplace platforms with fan-out support. Access it through a single unified API with automatic failover and intelligent routing.

Try Marketplace ListingAPI docs

Best for

Highest quality

Shopify, Etsy

Premium tier

Most affordable

Etsy, TikTok Shop

Economy tier

Contract

Max Latency120000ms

Providers (4)

ProviderScoreQualityPricing
Shopify
90premiumstandard
EtsyDEFAULT
92premiumeconomy
TikTok Shop
86premiumeconomy
Gumroad
88premiumeconomy

Quick start

Call Marketplace Listing through Alfred — automatic provider selection, failover, and load balancing included.

cURL

curl -X POST https://api.alfred-ai.app/v1/execute \
  -H "Authorization: Bearer $ALFRED_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "capability": "commerce.list",
    "input": { "prompt": "Hello world" }
  }'

TypeScript

import { Alfred } from '@alfred/core';

const alfred = new Alfred({ apiKey: process.env.ALFRED_API_KEY });

// Alfred automatically selects the best provider
const result = await alfred.execute({
  capability: 'commerce.list',
  input: { prompt: 'Hello world' },
});

console.log(result.output);

Orchestration pipeline

import { Alfred } from '@alfred/core';

const alfred = new Alfred({ apiKey: process.env.ALFRED_API_KEY });

// Multi-step pipeline with automatic failover
const result = await alfred.orchestrate({
  steps: [
    { id: 'step1', capability: 'commerce.list', input: { prompt: 'Hello world' } },
    { id: 'step2', capability: 'llm.chat', dependsOn: ['step1'],
      input: { prompt: 'Summarize: $step1.output' } },
  ],
});

Related Commerce capabilities

Product Management

commerce

Order Management

commerce

Inventory Management

commerce

Checkout

commerce

Customer Management

commerce

Getting started →API reference →All providers →All capabilities →