Discover/eBay API
live

eBay APIebay.com.au

Search active and sold eBay Australia listings, fetch full listing details, and compute market metrics including sell-through ratio and average sold price.

Endpoint health
verified 5d ago
search_active_listings
search_sold_completed_listings
compute_market_metrics
get_listing_details
4/4 passing latest checkself-healing
Endpoints
4
Updated
21d ago

What is the eBay API?

This API exposes 4 endpoints covering eBay Australia listing data — active search, sold listings, full listing details, and computed market metrics. The compute_market_metrics endpoint calculates sell-through ratio, 30-day sold count, and average sold price for any keyword. Each endpoint targets the ebay.com.au marketplace specifically, returning AUD-denominated pricing and Australian seller data.

Try it
Search keyword (e.g. 'iphone case')
Maximum price in AUD to filter results
Minimum price in AUD to filter results
eBay category ID to narrow search scope
api.parse.bot/scraper/ed1da096-4b00-49a3-8179-b9e1d6d0faa5/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/ed1da096-4b00-49a3-8179-b9e1d6d0faa5/search_active_listings?keyword=iphone+case&price_max=100&price_min=10&category_id=9355' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace ebay-com-au-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.ebay_australia_market_research_api import EbayAu, ListingSummary, Listing, MarketReport

ebay = EbayAu(api_key="PARSE_API_KEY")

# Compute market metrics for a product category
report = ebay.marketreports.compute(keyword="mechanical keyboard", price_min=50, price_max=200)
print(report.keyword, report.active_count, report.sold_count_30d, report.sell_through_ratio, report.avg_sold_price)

# Search active listings
for summary in ebay.listingsummaries.search_active(keyword="mechanical keyboard", price_min=50, price_max=200):
    print(summary.ebay_title, summary.item_price, summary.total_ebay_price, summary.is_sold)
    # Navigate to full details
    detail = summary.details()
    print(detail.condition, detail.seller_username, detail.quantity_sold, detail.image_links)
    break

# Search sold/completed listings
for sold in ebay.listingsummaries.search_sold(keyword="mechanical keyboard"):
    print(sold.ebay_item_id, sold.ebay_title, sold.item_price, sold.shipping_price_ebay)
    break
All endpoints · 4 totalmissing one? ·

Search for active listings on eBay Australia with optional price and category filters. Returns up to 60 items per request. Results include item ID, title, price, shipping cost, and image link. Seller username is not available in search results.

Input
ParamTypeDescription
keywordrequiredstringSearch keyword (e.g. 'iphone case')
price_maxnumberMaximum price in AUD to filter results
price_minnumberMinimum price in AUD to filter results
category_idintegereBay category ID to narrow search scope
Response
{
  "type": "object",
  "fields": {
    "items": "array of listing summary objects with ebay_item_id, ebay_title, ebay_item_url, item_price, shipping_price_ebay, total_ebay_price, seller_username, location, image_link, sold_date, is_sold",
    "total_results": "integer total number of matching listings"
  },
  "sample": {
    "data": {
      "items": [
        {
          "is_sold": false,
          "location": "N/A",
          "sold_date": "N/A",
          "ebay_title": "Shockproof Armor Matte Case Cover Fr Apple iPhone 17 16 15 14 13 12 11 Pro Max",
          "image_link": "https://i.ebayimg.com/images/g/YtYAAOSwCAZi-gto/s-l500.webp",
          "item_price": 8.35,
          "ebay_item_id": "374214453904",
          "ebay_item_url": "https://www.ebay.com.au/itm/374214453904",
          "seller_username": "N/A",
          "total_ebay_price": 8.35,
          "shipping_price_ebay": 0
        }
      ],
      "total_results": 640000
    },
    "status": "success"
  }
}

About the eBay API

Search and Filter Listings

The search_active_listings endpoint accepts a required keyword and optional price_min, price_max (both in AUD), and category_id parameters. It returns up to 60 items per request, each with ebay_item_id, ebay_title, item_price, shipping_price_ebay, total_ebay_price, seller_username, and a direct ebay_item_url. The search_sold_completed_listings endpoint takes only a keyword and returns recently sold items sorted by end date, using the same response shape — useful for validating actual transaction prices against active listing prices.

Listing Detail and Item Specifics

The get_listing_details endpoint takes a single item_id (the numeric eBay item ID as a string) and returns a richer response: condition, location, quantity_sold, an array of image_links, and an item_specifics object containing the key-value pairs the seller entered — things like brand, model, colour, or compatibility. This is the right endpoint for building product catalogues or enriching competitor research with structured attribute data.

Market Metrics Computation

The compute_market_metrics endpoint aggregates data for a keyword into four derived figures: active_count, sold_count_30d, avg_sold_price, and sell_through_ratio. It supports the same price_min and price_max filters as the active search. The sell-through ratio (sold listings divided by active listings) is a standard eBay research metric for gauging demand relative to supply. The response also echoes back the keyword so results are easy to batch and compare across multiple terms.

Reliability & maintenanceVerified

The eBay API is a managed, monitored endpoint for ebay.com.au — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when ebay.com.au changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official ebay.com.au API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
5d ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Calculate sell-through ratios for potential product categories before sourcing inventory
  • Track competitor active listing prices on ebay.com.au using search_active_listings with a brand keyword
  • Verify realistic sale prices by comparing avg_sold_price from sold listings against current active prices
  • Extract item_specifics from get_listing_details to build structured product attribute datasets
  • Monitor how quickly a keyword's sold_count_30d changes over time as a demand signal
  • Filter active listings by price_min and price_max to analyse a specific price tier on the AU market
  • Pull image_links and listing metadata for a set of item IDs to build a product comparison tool
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does eBay have an official developer API?+
Yes. eBay operates the eBay Developers Program with a suite of REST and Trading APIs, documented at developer.ebay.com. However, the official APIs require application registration, OAuth credentials, and are subject to separate call limits and approval processes. They also cover global eBay sites rather than targeting ebay.com.au specifically.
What does `search_sold_completed_listings` return that `search_active_listings` doesn't?+
search_sold_completed_listings returns items that have already transacted, sorted by end date. Both endpoints share the same core fields (ebay_item_id, item_price, shipping_price_ebay, total_ebay_price, seller_username), but the sold endpoint reflects final transaction prices rather than asking prices, and it does not accept price or category filters — only a keyword.
How many listings does `compute_market_metrics` analyse?+
The endpoint fetches up to 2 pages of active listings and 1 page of sold listings to compute its metrics. For high-volume keywords this means the active_count and sold_count_30d figures represent a sample rather than the full marketplace population. For niche keywords with fewer total results the sample is likely to be complete.
Does the API return seller feedback scores or detailed seller ratings?+
Not currently. The API returns seller_username across all listing endpoints but does not expose feedback scores, positive feedback percentages, or seller rating breakdowns. You can fork this API on Parse and revise it to add a seller detail endpoint covering those fields.
Can I retrieve bid history or auction-specific data for eBay AU listings?+
Not currently. The API covers buy-it-now and sold listing prices but does not expose bid counts, current bid amounts, or auction end times as distinct fields. You can fork this API on Parse and revise it to add auction-focused fields to the listing detail or search responses.
Page content last updated . Spec covers 4 endpoints from ebay.com.au.
Related APIs in MarketplaceSee all →
ebay.com API
Search and monitor eBay listings across any category, with support for active and completed/sold listings. Retrieve item details, pricing history, seller profiles and feedback, and category data. Filter by keyword, category, condition, seller, and sort order to support price research, market analysis, and inventory monitoring.
ebay.co.uk API
Search eBay UK listings and sold items to find products, compare prices, and view seller feedback and ratings. Access detailed item information, explore categories, and discover daily deals all in one place.
ebay.ca API
Search and compare eBay Canada listings with detailed item information, pricing history from completed sales, and seller profiles to make informed buying decisions. Discover current deals, browse product categories, and view seller feedback and ratings all in one place.
ebay.de API
Search eBay.de listings with flexible filters to find the products you want, view detailed item information, and check seller feedback ratings to make informed buying decisions. Track sold items and monitor pricing trends across any category.
ebay.it API
Search and browse listings on eBay Italy (ebay.it). Retrieve item details, completed/sold listings for price research, and public seller profiles.
auctions.yahoo.co.jp API
Search active and completed Yahoo Auctions Japan listings, view detailed item information, and identify bargain deals by comparing current prices against market trends. Analyze seller profiles to make informed bidding decisions on Japanese auction items.
etsy.com API
Discover what shoppers are searching for on Etsy by accessing real-time trending keywords and popular search terms that can help you identify market demand and optimize your product listings. Get instant access to autocomplete suggestions and "Popular right now" trends to stay ahead of customer interests and improve your shop's visibility.
lista.mercadolivre.com.br API
Search and browse products from Mercado Livre Brazil, view detailed pricing and offers, and explore categories to find daily deals and product information. Get comprehensive product details including specifications and current market offers all in one place.