# AgentBazaar Seller Products Search

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

Retrieves all product listings from a specific seller or shop across eBay, AliExpress, Amazon, or Etsy marketplaces

## Facts

- Endpoint: GET https://agent-bazaar-five.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-31c2b95b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_g_ZZpNXj3ZPJrSEzMOXrW

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-31c2b95b
```

Example prompt: Can you pull up all the products listed by the Etsy shop 'VintageNookStudio' — show me up to 20 items?

## When to prefer this

Use this endpoint when you need to enumerate all products offered by a known seller or shop on a specific marketplace. Ideal for seller research, competitive analysis, or building a catalog of a specific vendor's inventory. Prefer this over generic product search when you already know the seller identity and want their full product range.

## Known failure modes

- Invalid or non-existent seller username returns empty results or 404
- Unsupported marketplace value returns an error
- Rate limiting or Apify actor failure returns a 500 error
- Payment failure (x402 protocol) returns 402 Payment Required
- Marketplace temporarily unavailable causes timeout or partial results

## 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 or shop, including product details such as titles, prices, and availability, sourced from the requested marketplace (eBay, AliExpress, Amazon, or Etsy) via Apify scraping actors.

## 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-31c2b95b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-bazaar-five.vercel.app](https://www.zero.xyz/host/agent-bazaar-five.vercel.app/llms.txt)
