Discover/eBay API
live

eBay APIebay.co.uk

Access eBay UK listings, sold prices, item details, seller feedback, categories, daily deals, and PSA card results via a single REST API.

Endpoint health
verified 46m ago
search_listings
get_item_details
get_seller_feedback
get_daily_deals
search_sold_psa_cards
3/7 passing latest checkself-healing
Endpoints
7
Updated
21d ago

What is the eBay API?

The eBay UK API covers 7 endpoints that return active listings, completed sales, item details, seller feedback, category trees, daily deals, and sold PSA-graded card results from eBay.co.uk. The search_listings endpoint accepts a keyword query and optional category_id to return paginated results with title, price, condition, and item ID. A dedicated search_sold_psa_cards endpoint filters completed sales to PSA-graded trading cards specifically.

Try it
Page number for pagination (1-based)
Search keyword or phrase
eBay category ID to filter results. 0 searches all categories.
api.parse.bot/scraper/923c816c-9218-4c32-ae0c-2eac3d514be5/<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/923c816c-9218-4c32-ae0c-2eac3d514be5/search_listings?page=1&query=iPhone+15&category_id=0' \
  -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-co-uk-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_uk_scraper_api import EbayUK, ListingSummary, Listing, Deal, Category, PSACard

ebay = EbayUK()

# Search for active listings
for item in ebay.listingsummaries.search(query="iPhone 15", limit=5):
    print(item.title, item.price, item.condition)

# Get full details for a listing by item ID
detail = ebay.listings.get(item_id="297490087982")
print(detail.title, detail.price, detail.seller_username)
for key, value in detail.specifics.items():
    print(key, value)

# Navigate from summary to full detail
for summary in ebay.listingsummaries.search(query="MacBook Pro", limit=1):
    full = summary.details()
    print(full.title, full.price, full.condition)

# Search sold listings for price analysis
for sold in ebay.listingsummaries.search_sold(query="Nintendo Switch", limit=3):
    print(sold.title, sold.price, sold.shipping)

# Check seller feedback
feedback = ebay.sellerfeedbacks.get(username="loop_mobile")
print(feedback.username, feedback.positive_feedback_percent)
for fb in feedback.recent_feedbacks:
    print(fb.comment, fb.item)

# Browse categories
for cat in ebay.categories.list(limit=3):
    print(cat.name, cat.id)
    for sub in cat.subcategories:
        print(sub.name, sub.url)

# Get daily deals
for deal in ebay.deals.list(limit=5):
    print(deal.title, deal.price, deal.original_price)

# Search sold PSA cards
for card in ebay.psacards.search(card_name="Charizard PSA 10", limit=3):
    print(card.title, card.price, card.condition)
All endpoints · 7 totalmissing one? ·

Search for active product listings on eBay UK by keyword. Returns paginated results including title, price, condition, item ID, URL, and shipping info. Results are ordered by eBay's default Best Match algorithm. Each page returns up to ~60 items.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-based)
queryrequiredstringSearch keyword or phrase
category_idstringeBay category ID to filter results. 0 searches all categories.
Response
{
  "type": "object",
  "fields": {
    "page": "string, current page number",
    "items": "array of listing objects with item_id, title, price, condition, url, and shipping",
    "query": "string, the search query used"
  },
  "sample": {
    "data": {
      "page": "1",
      "items": [
        {
          "url": "https://www.ebay.co.uk/itm/297490087982",
          "price": "£339.00 to £449.00",
          "title": "Apple iPhone 15 - 128GB 256GB 512GB - All Colours Smartphone - Good",
          "item_id": "297490087982",
          "shipping": "Free next day delivery",
          "condition": "Good - Refurbished",
          "sold_date": "99+ sold"
        }
      ],
      "query": "iPhone 15"
    },
    "status": "success"
  }
}

About the eBay API

Active and Sold Listings

The search_listings endpoint takes a required query string plus optional page and category_id parameters. Results include an items array where each object carries item_id, title, price, condition, url, and shipping. Setting category_id to 0 searches across all categories. The search_sold_listings endpoint works the same way but targets completed sales, making it useful for price history research — each response includes a type field set to 'sold' so you can distinguish result sets programmatically.

Item Details and Seller Feedback

get_item_details accepts a 10–14 digit item_id and returns the full listing record: price, title, images (an array of URLs), condition, seller_username, and a specifics object containing key-value pairs such as brand, model, or size depending on the category. get_seller_feedback takes a seller username and returns positive_feedback_percent alongside a recent_feedbacks array, each entry holding a comment and an item field.

Categories, Deals, and PSA Cards

get_all_categories requires no parameters and returns the full eBay UK category tree: top-level categories with name, id, and a subcategories array where each child also carries name, url, id, and a children array. get_daily_deals returns current promotions as a deals array with title, price, original_price (when the listing shows a was-price), and url. The search_sold_psa_cards endpoint filters completed sales to items containing 'PSA' in the title; pass a card_name string to target a specific card and grade.

Reliability & maintenanceVerified

The eBay API is a managed, monitored endpoint for ebay.co.uk — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when ebay.co.uk 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.co.uk 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
46m ago
Latest check
3/7 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
  • Build a price tracker by polling search_sold_listings for a product keyword and charting median price over time.
  • Vet a seller before a high-value purchase by calling get_seller_feedback to review positive_feedback_percent and recent comments.
  • Power a product comparison tool using get_item_details to pull specifics fields like brand and model across multiple item_id values.
  • Aggregate eBay UK daily deals into a deal-alert newsletter using get_daily_deals and its original_price vs price fields.
  • Research PSA graded card valuations by querying search_sold_psa_cards with a specific card name and grade.
  • Populate a category-aware search UI by pre-loading the category tree from get_all_categories and mapping id values to category_id filter params in search_listings.
  • Detect arbitrage opportunities by comparing active listing prices from search_listings against completed sale prices from search_sold_listings for the same query.
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 at developer.ebay.com, which includes the Browse API, Finding API, and Trading API among others. Those require application registration and OAuth credentials. This Parse API provides access to eBay UK data without that setup.
What does `get_item_details` return that `search_listings` doesn't?+
search_listings gives you a summary per item: item_id, title, price, condition, url, and shipping. get_item_details goes deeper for a single item — it adds a full images array, a specifics object with category-specific attributes like brand or model, and the seller_username. Use it when you need the complete record for a known item ID.
Does the API cover eBay marketplaces outside the UK?+
No. All endpoints are scoped to eBay.co.uk. Results, prices (in GBP), and category IDs reflect the UK marketplace only. You can fork this API on Parse and revise it to target a different eBay regional domain if you need another market.
Does the API return bid history or auction time-remaining for auction listings?+
Not currently. The API returns price, condition, title, url, and shipping for listings, but does not expose bid count, current bid history, or auction end times. You can fork it on Parse and revise to add an endpoint that surfaces those auction-specific fields.
How does pagination work for search endpoints?+
Both search_listings and search_sold_listings accept an optional page string parameter. The response echoes back the page value you passed. If page is omitted, results default to the first page. Increment the page value in successive requests to walk through result sets.
Page content last updated . Spec covers 7 endpoints from ebay.co.uk.
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.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.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.
amazon.co.uk API
Access data from amazon.co.uk.
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.
vinted.co.uk API
Search and browse Vinted UK listings to compare prices, view detailed product information, and track pricing trends across categories. Get instant access to live marketplace data including search results, item details, and price intelligence for competitive shopping analysis.
eBay UK API – Listings, Prices & Seller Data · Parse