Discover/eBay API
live

eBay APIebay.com

Access eBay search listings, item details, sold/completed prices, seller profiles, feedback, and category data via a structured REST API.

Endpoint health
verified 4h ago
search_listings
get_item_details
get_seller_profile
get_seller_feedback
get_seller_active_listings
8/8 passing latest checkself-healing
Endpoints
8
Updated
2d ago

What is the eBay API?

The eBay API covers 8 endpoints that return structured data from eBay's marketplace, including active listings, historical sold prices, and seller profiles. The search_listings endpoint accepts keyword, category ID, and seller filters and returns up to ~60 results per page with title, price, condition, shipping, and item ID. Companion endpoints cover item-level specifics, seller feedback, and autocomplete suggestions.

Try it
Page number for pagination.
Filter to sold items only.
Sort order code.
Search keyword. At least one of query, seller, or category_id should be provided.
Seller username to filter results to a specific seller's listings.
Filter to completed listings only.
eBay category ID to filter by (numeric string).
api.parse.bot/scraper/caa8e1ad-f5a8-41c1-9bd2-54a8e19b6c35/<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/caa8e1ad-f5a8-41c1-9bd2-54a8e19b6c35/search_listings?page=1&query=iphone+15' \
  -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-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_API import Ebay, SearchSort, ItemNotFound

ebay = Ebay()

# Search for listings sorted by lowest price
for listing in ebay.listings.search(query="mechanical keyboard", sort=SearchSort.LOWEST_PRICE, limit=5):
    print(listing.title, listing.price, listing.item_id)

# Get full item details including images and specifics
item = ebay.listings.search(query="iphone 15", limit=1).first()
if item:
    detail = ebay.listings.get(item_id=item.item_id)
    print(detail.title, detail.price, detail.condition)
    print(detail.images, detail.specifics)

# Look up a seller's profile and browse active inventory
seller = ebay.sellers.get(username="thrift.books")
print(seller.username)

for item in seller.active_listings(sort=SearchSort.NEWLY_LISTED, limit=3):
    print(item.title, item.price)

# Get seller feedback
fb = seller.feedback()
print(fb.modules)

# Typed error handling for missing items
try:
    ebay.listings.get(item_id="000000000000")
except ItemNotFound as exc:
    print(f"Item not found: {exc.item_id}")

# Browse completed/sold listings for price research
for sold in ebay.listings.completed_sold(query="nintendo switch", sort=SearchSort.BEST_MATCH, limit=5):
    print(sold.title, sold.price, sold.url)

# Get search suggestions for autocomplete
for sug in ebay.suggestions.search(query="laptop", limit=5):
    print(sug.keyword, sug.direct_type)

print("exercised: listings.search / listings.get / seller.active_listings / seller.feedback / listings.completed_sold / suggestions.search")
All endpoints · 8 totalmissing one? ·

Search for eBay listings with filters for category, seller, sold/completed status, and sorting. Returns paginated results with item titles, prices, conditions, and item IDs. Each page returns up to ~60 results from eBay's search results page.

Input
ParamTypeDescription
pageintegerPage number for pagination.
soldbooleanFilter to sold items only.
sortstringSort order code.
querystringSearch keyword. At least one of query, seller, or category_id should be provided.
sellerstringSeller username to filter results to a specific seller's listings.
completebooleanFilter to completed listings only.
category_idstringeBay category ID to filter by (numeric string).
Response
{
  "type": "object",
  "fields": {
    "total": "integer total number of matching listings",
    "listings": "array of listing objects with title, price, url, image, condition, shipping, and item_id"
  },
  "sample": {
    "data": {
      "total": 41000,
      "listings": [
        {
          "url": "https://www.ebay.com/itm/296129124843",
          "image": "https://i.ebayimg.com/images/g/lfYAAeSwjkZqKF4~/s-l500.webp",
          "price": "$398.39",
          "title": "Apple iPhone 15 128GB Factory Unlocked AT&T T-Mobile Verizon Very Good Condition",
          "item_id": "296129124843",
          "shipping": "$398.39$799.00",
          "condition": "FREE FEDEX 2 DAY - 60 DAY RETURNS - 1 YEAR WARRANTY"
        }
      ]
    },
    "status": "success"
  }
}

About the eBay API

Search and Listing Data

The search_listings endpoint accepts a query string, category_id, seller username, and boolean sold/complete flags to filter results on eBay's marketplace. Each result in the listings array includes title, price, condition, shipping, image, url, and item_id. Pagination is controlled with the page parameter, and results are ordered using the sort input. For dedicated historical pricing research, get_completed_sold_listings applies both completed and sold filters in one call, returning the same listing shape.

Item and Seller Details

get_item_details accepts an item_id (obtainable from any listing endpoint) and returns the full item record: title, price, condition, images (full-resolution URLs), a seller object with name and feedback, and a specifics object of key-value attribute pairs such as brand, model, color, or size. Seller-level data is split across two endpoints: get_seller_profile returns ratings, detailed seller ratings (accuracy, shipping cost, shipping speed), and member details, while get_seller_feedback returns paginated individual feedback cards with comments, ratings, and item references. The limit parameter on feedback accepts 25, 50, or 100 results per page.

Categories and Suggestions

get_categories returns the full eBay category hierarchy — top-level and subcategories — with name, url, and category_id for each node. These IDs feed directly into the category_id filter on search_listings. get_search_suggestions takes a partial query and returns the autocomplete keyword suggestions eBay surfaces in its search dropdown, including each suggestion's keyword, type, and direct_type fields.

Seller Inventory

get_seller_active_listings scopes a standard listing search to one seller using the username parameter, returning total count and the full listing array. Combined with get_seller_feedback and get_seller_profile, this gives a complete picture of any public seller's activity on eBay.

Reliability & maintenanceVerified

The eBay API is a managed, monitored endpoint for ebay.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when ebay.com 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 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
4h ago
Latest check
8/8 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
  • Track historical sale prices for a product by querying get_completed_sold_listings over time.
  • Monitor a competitor seller's active inventory using get_seller_active_listings filtered by username.
  • Aggregate item condition and pricing data across a category by combining search_listings with category_id.
  • Evaluate seller reputation before a purchase using get_seller_profile feedback scores and detailed ratings.
  • Build a product catalog enriched with item-specific attributes via the specifics field from get_item_details.
  • Populate a search autocomplete component using keyword suggestions from get_search_suggestions.
  • Map eBay category IDs to names for dynamic filtering by querying get_categories once and caching the result.
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 maintains an official set of REST and traditional APIs at https://developer.ebay.com. The official APIs require application registration, OAuth credentials, and are subject to eBay's developer program terms and call quotas.
What does `get_item_details` return beyond the price and title?+
It returns images (an array of full-resolution image URLs), condition, a seller object with name and feedback string, and a specifics object containing all item attribute key-value pairs eBay shows on the listing — things like brand, model number, storage capacity, or material, depending on the category.
Does the feedback endpoint return buyer identities or only comments?+
Each feedback card in get_seller_feedback includes the comment text, rating, and item details, but individual buyer usernames are not guaranteed to be exposed — eBay frequently anonymizes them. The totalFeedback count and paginationModel are available for tracking volume over pages.
Are eBay Motors or real estate listings covered?+
The API covers standard eBay marketplace listings accessible via search and category filters. eBay Motors vehicle listings and eBay real estate classified ads have separate category structures and may not surface fully through standard search endpoints. You can fork this API on Parse and revise it to add dedicated endpoints targeting those category IDs.
Is there a way to get price alerts or watch-list data?+
No watch-list or alert data is currently exposed — those features require an authenticated eBay session. The API covers public listing and seller data. You can fork it on Parse and revise to add polling logic against search_listings or get_completed_sold_listings to approximate price-change detection.
Page content last updated . Spec covers 8 endpoints from ebay.com.
Related APIs in MarketplaceSee all →
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.com.au API
Search active and sold eBay Australia listings to research products, analyze competitors, and view detailed listing information like pricing and performance metrics. Get market insights including demand trends and pricing data to inform your selling strategy.
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.
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.
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.
shpock.com API
Search and browse products listed on Shpock.com, view detailed listing information and seller profiles, and explore all available marketplace categories. Find what you're looking for by searching inventory, checking seller histories, and discovering related items from individual merchants.
jp.mercari.com API
Search and browse millions of product listings on Mercari Japan with bilingual support, filtering by categories and getting detailed pricing, item specifications, and seller information. Access comprehensive marketplace data including product summaries, category overviews, and individual seller profiles to find exactly what you're looking for.