//Source · Marketplaces
eBay API — Down to the Sold Price
eBay’s own APIs are split across three surfaces with separate auth schemes and developer approval. These 9 endpoints return listings, real sold prices, sellers, catalog products, and reviews as clean JSON — one key, no eBay developer account.
Start for free7-day free trial
What You Can Pull From eBay
/api/ebay/itemsFull listing details by item ID or URL — title, price, condition, images, buying format, item specifics, seller summary
/api/ebay/items/searchSearch active listings by keyword — title, price, condition, image, buying format, shipping, sold count, watcher count. Filters: condition, buying format, price range, category
/api/ebay/items/soldSold and completed listings by keyword — sold price, sold date, condition, bid count for auctions. The only reliable source of real transaction prices
/api/ebay/productsCatalog product by ePID or URL — title, brand, model, MPN, UPC, images, aggregate rating, price range across listings, listing count, product specs, category
/api/ebay/products/reviewsBuyer reviews for a catalog product — rating, title, text, author, date, verified-purchase flag, item condition, selling account, helpful-vote count
/api/ebay/sellersSeller or store profile by username, store name, or URL — name, feedback count, positive feedback %, items sold, followers, location, member-since date, store description
/api/ebay/sellers/feedbackFeedback reviews received by a seller — rating, review text, reviewer alias and score, related item, purchase price, period
/api/ebay/sellers/itemsActive listings for a seller — title, price/currency, list_price (if discounted), condition, subtitle, sold count, image, buying format
/api/ebay/categoriesFull eBay browse category tree — every department, category, and subcategory with id, name, alias, parent_id, and browse URL
What Comes Back
{
"keyword": "vintage denim jacket",
"results": [
{
"title": "Levi’s Type III trucker jacket, 1970s",
"sold_price": 148.5,
"currency": "USD",
"sold_date": "2026-07-21",
"condition": "Pre-owned",
"buying_format": "auction",
"bid_count": 17
}
]
}Built for These Jobs
Price Against What Actually Sold
Connect over MCP or the API and read asking prices next to real transaction prices. 7-day free trial.
Common Questions
No. Every endpoint authenticates with your Anysite key alone — no eBay app registration, no OAuth flow, no developer approval process on your side.