Available endpoints (4)

Setup and exact call parameters for AI Agents
I want to use the E-commerce Scraping Tool service on Fast Marketplace.

## Setup (skip if you already have Fast Marketplace set up)
1. Open the marketplace skill: https://marketplace.fast.xyz/skill.md
2. Fund a Fast wallet on mainnet.
3. Provide one or more product or category URLs, or a search term plus country.
4. Keep the returned job token and poll the marketplace job route for completion.

## Available Endpoints

### Category Products ($0.0001 USDC)
curl -X POST "https://api.marketplace.fast.xyz/api/apify-ecommerce/category-products" \
  -H "Content-Type: application/json" \
  -d '{
  "country": "US",
  "maxItems": 25,
  "startUrls": [
    {
      "url": "https://www.amazon.com/s?k=mechanical+keyboard"
    }
  ]
}'

Use this when you have a retail category or collection URL and want listing pages scraped.

### Product Details ($0.0001 USDC)
curl -X POST "https://api.marketplace.fast.xyz/api/apify-ecommerce/product-details" \
  -H "Content-Type: application/json" \
  -d '{
  "country": "US",
  "maxItems": 10,
  "startUrls": [
    {
      "url": "https://www.amazon.com/dp/B09X7MPX8L"
    }
  ]
}'

Use this when you already know the exact product URLs you want to enrich.

### Scrape Products ($0.0001 USDC)
curl -X POST "https://api.marketplace.fast.xyz/api/apify-ecommerce/scrape-products" \
  -H "Content-Type: application/json" \
  -d '{
  "country": "US",
  "maxItems": 10,
  "startUrls": [
    {
      "url": "https://www.amazon.com/dp/B09X7MPX8L"
    }
  ]
}'

Use this for multi-site product intelligence when you do not want a site-specific scraper per merchant.

### Search Products ($0.0001 USDC)
curl -X POST "https://api.marketplace.fast.xyz/api/apify-ecommerce/search-products" \
  -H "Content-Type: application/json" \
  -d '{
  "search": "wireless mechanical keyboard",
  "country": "US",
  "maxItems": 25
}'

Use this when your starting point is a query, not a known product or collection URL.

For paid endpoints: the first call returns 402. Authorize payment with your Fast wallet and retry with the payment signature header.
Have a request?

Suggest marketplace coverage