eBay Product Search API avatar

eBay Product Search API

Pricing

$1.00/month + usage

Go to Apify Store
eBay Product Search API

eBay Product Search API

A professional-grade API tool to search for products on eBay. It fetches real-time data including price, condition, and seller info. Includes built-in affiliate link generation to maximize your earnings. Fast, stable, and official.

Pricing

$1.00/month + usage

Rating

0.0

(0)

Developer

tan tran

tan tran

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

0

Monthly active users

24 days ago

Last modified

Share

An efficient, lightweight, and reliable tool to search for products on eBay using their official Browse API. Unlike web scrapers, this Actor interacts directly with eBay's backend, ensuring data accuracy and high performance.

Features

  • Official API Integration: Direct communication with eBay's Browse API for stable data retrieval.
  • Affiliate Link Generation: Automatically injects your Campaign ID into product links, ready for affiliate tracking.
  • Deep Link Support: Generates links that can automatically trigger the eBay app on mobile devices.
  • Lightweight: No heavy browser automation (Puppeteer/Playwright) needed; extremely fast and low cost.

How it works

  1. You provide a search keyword and a result limit.
  2. The Actor fetches live product data (Title, Price, Condition, Seller, Images) from eBay.
  3. It generates an affiliate-ready deep link for each product found.
  4. Data is stored in an Apify Dataset, ready for download (JSON, CSV, Excel).

Input Parameters

FieldTypeDescription
keywordStringThe product or term you want to search for on eBay.
limitIntegerMaximum number of products to fetch (1–200). Default: 20.

Required Configuration

Before running this Actor, you must set the following Environment Variables in the Actor's Settings -> Environment variables tab:

  • EBAY_CLIENT_ID: Your eBay Application ID (App ID).
  • EBAY_CLIENT_SECRET: Your eBay Cert ID.
  • EBAY_CAMPAIGN_ID: Your eBay Partner Network Campaign ID.

Output Example

The Actor outputs a JSON object containing search metadata and a list of product listings:

{
"metadata": {
"keyword": "pokemon cards",
"total_found": 1500,
"average_price": "24.99"
},
"listings": [
{
"title": "Example Pokemon Card",
"price": 19.99,
"currency": "USD",
"link": "[https://www.ebay.com/itm/...&campid=](https://www.ebay.com/itm/...&campid=)...",
"image": "[https://i.ebayimg.com/](https://i.ebayimg.com/)...",
"condition": "New",
"seller": "top_seller_123",
"item_id": "1234567890",
"shipping_cost": 2.50
}
]
}