# eBay Search, Comps & Products — Live Listings Search

> eBay Search, Comps & Products — Live Listings Search is a paid API for AI agents from ebay.use.x402atlas.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Search live eBay listings across regional sites with filters for condition, price, buying format, and seller location, returning structured JSON with prices, shipping, and seller info.

## Facts

- Endpoint: GET https://ebay.use.x402atlas.com/search
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Success rate: 0% of calls made through Zero
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ebay-search-comps-products-live-listings-search-b72b0e95
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fgMlrUedUy8JxcfVrEKVS

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 ebay-search-comps-products-live-listings-search-b72b0e95
```

Example prompt: Search eBay.com for a used iPhone 15 Pro in Used condition (condition 3000), priced between $400 and $700, Buy It Now only, sorted by lowest price first, and give me the first 50 results as clean JSON.

## When to prefer this

Use this endpoint when you need live, current eBay listing data including prices, conditions, and seller info across multiple regional eBay marketplaces. Prefer it over sold-comps endpoints when you want active listings still available to buy (not historical sold prices). Prefer it over a generic web scraper when you need structured, filterable marketplace data with auction timing, condition codes, and seller reputation already parsed.

## Known failure modes

- Invalid or unsupported domain enum value returns an error
- Query string exceeding 300 characters is rejected
- Conflicting min_price and max_price (min > max) may return empty results or an error
- Unsupported condition ID combination returns no results
- Rate limiting or payment failure (x402) results in 402 Payment Required
- eBay regional site outage causes upstream timeout
- Very niche queries may return zero items

## How this service works

eBay listings search — live prices, condition, shipping, seller reputation, auctions & Buy It Now across supported regional eBay sites, with category, price band, condition, seller & location filters, sorted, as clean JSON.

## Output

A structured JSON object containing the search query metadata (query, domain, page, per_page) and an array of listing items, each with fields such as title, current price, shipping cost, condition label, buying format (Auction/BIN/BO), seller rating, item URL, and for auctions the remaining time or end date.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "query"
     ],
     "properties": {
      "page": {
       "type": "integer",
       "default": 1,
       "minimum": 1,
       "description": "Result page number; follow next_page from a previous response"
      },
      "sort": {
       "enum": [
        "best_match",
        "ending_soonest",
        "newly_listed",
        "price_shipping_lowest",
        "price_shipping_highest",
        "distance_nearest"
       ],
       "type": "string",
       "default": "best_match",
       "description": "Sort order"
      },
      "query": {
       "type": "string",
       "maxLength": 300,
       "description": "Free-text search query — anything usable in a regular eBay search (e.g. \"iphone 15 pro\")"
      },
      "domain": {
       "enum": [
        "ebay.at",
        "ebay.ca",
        "ebay.ch",
        "ebay.co.uk",
        "ebay.com",
        "ebay.com.au",
        "ebay.com.hk",
        "ebay.com.my",
        "ebay.com.sg",
        "ebay.de",
        "ebay.es",
        "ebay.fr",
        "ebay.ie",
        "ebay.it",
        "ebay.nl",
        "ebay.pl"
       ],
       "type": "string",
       "default": "ebay.com",
       "description": "eBay regional site to search"
      },
      "location": {
       "enum": [
        "Domestic",
        "Regional",
        "Worldwide"
       ],
       "type": "string",
       "description": "Preferred item location"
      },
      "per_page": {
       "enum": [
        25,
        50,
        100,
        200
       ],
       "type": "integer",
       "default": 50,
       "description": "Results per page"
      },
      "condition": {
       "type": "string",
       "description": "Comma-separated condition ids: 1000 New, 1500 Open box, 2000 Certified refurbished, 2500 Seller refurbished, 3000 Used, 10 Not specified"
      },
      "max_price": {
       "type": "number",
       "minimum": 0,
       "description": "Maximum price filter"
      },
      "min_price": {
       "type": "number",
       "minimum": 0,
       "description": "Minimum price filter"
      },
      "buying_f
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "page": 1,
  "items": [
   {
    "link": "https://www.ebay.com/itm/146252519201",
    "price": {
     "raw": "$489.99",
     "extracted": 489.99
    },
    "title": "Apple iPhone 15 Pro 128GB Natural Titanium (Unlocked) - Very Good Condition",
    "seller": {
     "username": "certified.tech.deals",
     "review_count": 48213,
     "positive_feedback_percent": 99.2
    },
    "returns": "Free returns",
    "location": "United States",
    "shipping": {
     "raw": "Free shipping",
     "free": true
    },
    "condition": "Pre-Owned",
    "sponsored": false,
    "thumbnail": "https://i.ebayimg.com/images/g/aB0AAOSw1x9mQ2Zx/s-l500.jpg",
    "extensions": [
     "Free returns",
     "Top Rated Plus"
    ],
    "product_id": "146252519201",
    "details_link": "https://ebay.use.x402atlas.com/product?product_id=146252519201",
    "quantity_sold": 412
   },
   {
    "link": "https://www.ebay.com/itm/156733902118",
    "price": {
     "raw": "$519.00 to $589.00",
     "extracted": 519
    },
    "title": "Apple iPhone 15 Pro 256GB Blue Titanium Unlocked",
    "rating": 4.5,
    "seller": {
     "username": "phoneup_store",
     "review_count": 10544,
     "positive_feedback_percent": 98.7
    },
    "discount": "20% off",
    "location": "United States",
    "shipping": {
     "raw": "+$12.40 shipping",
     "free": false,
     "extracted": 12.4
    },
    "condition": "Pre-Owned",
    "sponsored": false,
    "thumbnail": "https://i.ebayimg.com/images/g/kQ4AAOSwXy5nGt2p/s-l500.jpg",
    "product_id": "156733902118",
    "details_link": "https://ebay.use.x402atlas.com/product?product_id=156733902118",
    "reviews_count": 231,
    "original_price": {
     "raw": "$649.00",
     "extracted": 649
    }
   }
  ],
  "query": "iphone 15 pro",
  "domain": "ebay.com",
  "per_page": 50,
  "next_page": 2,
  "categories": [
   {
    "id": 9355,
    "name": "Cell Phones & Smartphones"
   },
   {
    "id": 20349,
    "name": "Cell Phone & Smartphone Parts"
   }
  ],
  "total_results": 8347,
  "related_searches": [
   "iphone 15 pro max",
   "iphone 15 pro unlocked",
   "iphone 14 pro"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ebay-search-comps-products-live-listings-search-b72b0e95/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ebay.use.x402atlas.com](https://www.zero.xyz/host/ebay.use.x402atlas.com/llms.txt)
