ebay.com.au 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.
curl -X GET 'https://api.parse.bot/scraper/ed1da096-4b00-49a3-8179-b9e1d6d0faa5/search_active_listings?keyword=iphone+case' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for active listings on eBay Australia with optional price and category filters. Returns up to 60 items per request.
| Param | Type | Description |
|---|---|---|
| keywordrequired | string | Search keyword (e.g. 'iphone case') |
| price_max | number | Maximum price in AUD to filter results |
| price_min | number | Minimum price in AUD to filter results |
| category_id | integer | eBay category ID to narrow search scope |
{
"type": "object",
"fields": {
"items": "array of listing 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": "For iPhone 17 16 15 14 13 12 11 Pro Max Plus Shockproof Silicone Case Cover oz",
"image_link": "https://i.ebayimg.com/images/g/dwMAAeSwuIZob20k/s-l500.webp",
"item_price": 7.95,
"ebay_item_id": "326679165661",
"ebay_item_url": "https://www.ebay.com.au/itm/326679165661",
"seller_username": "N/A",
"total_ebay_price": 7.95,
"shipping_price_ebay": 0
}
],
"total_results": 640000
},
"status": "success"
}
}About the ebay.com.au 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.
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.
- Calculate sell-through ratios for potential product categories before sourcing inventory
- Track competitor active listing prices on ebay.com.au using
search_active_listingswith a brand keyword - Verify realistic sale prices by comparing
avg_sold_pricefrom sold listings against current active prices - Extract
item_specificsfromget_listing_detailsto build structured product attribute datasets - Monitor how quickly a keyword's
sold_count_30dchanges over time as a demand signal - Filter active listings by
price_minandprice_maxto analyse a specific price tier on the AU market - Pull
image_linksand listing metadata for a set of item IDs to build a product comparison tool
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does eBay have an official developer API?+
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?+
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?+
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.