# AgentBazaar Seller Products Search

> AgentBazaar Seller Products Search is a paid API for AI agents from agentshoping.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Fetch product listings from a specific seller or shop across eBay, AliExpress, Amazon, and Etsy by seller username

## Facts

- Endpoint: GET https://agentshoping.vercel.app/api/seller-products
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbazaar-seller-products-search-bdb21f87
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VBB9qMWwWNNjBgNCKQPiA

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability agentbazaar-seller-products-search-bdb21f87
```

Example prompt: Can you pull up all the products listed by the eBay seller 'techgadgets_pro' — grab up to 50 listings from their shop?

## When to prefer this

Use this endpoint when you need to retrieve all or a filtered set of products listed by a specific known seller or shop on a major marketplace (eBay, AliExpress, Amazon, Etsy). Ideal when you know the seller's username and want to browse their full inventory rather than doing a keyword-based product search. Prefer this over general product search when seller identity is the key filter.

## Known failure modes

- Seller username not found on the specified marketplace — returns empty results or error
- Invalid or unsupported marketplace value — may return error or default behavior
- Apify actor timeout or rate limiting — may return partial results or failure
- No products found for the seller — empty product list returned
- Missing required username parameter — returns validation error

## How this service works

Multi-marketplace product search for AI agents. Search eBay, AliExpress, Amazon, and Etsy via Apify actors.

## Output

A list of product listings from the specified seller on the chosen marketplace, including product details such as titles, prices, and item information scraped via Apify actors from eBay, AliExpress, Amazon, or Etsy.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "username"
 ],
 "properties": {
  "limit": {
   "type": "integer",
   "description": "Max products to return"
  },
  "username": {
   "type": "string",
   "description": "Seller username or shop name"
  },
  "marketplace": {
   "type": "string",
   "description": "Source marketplace"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentbazaar-seller-products-search-bdb21f87/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentshoping.vercel.app](https://www.zero.xyz/host/agentshoping.vercel.app/llms.txt)
