eBay Search API
Scrape eBay Search data with one API call. Returns eBay listings matching a keyword, 60 per page, each with its item id, title, price, original price where the listing is discounted, currency, condition, image, seller handle, seller feedback percentage and count, units sold, buying format, and the listing URL. Sixty rows a call is the densest listing surface in this API. Feed a returned item id into GET /v1/ebay/product for the full listing including seller reputation depth. When crawling, note that the result total eBay reports is an estimate that changes between pages, so it is not returned here: paginate until a page comes back empty.
Last updated August 2026Maintained by the SocialCrawl team
Returns eBay listings matching a keyword, sixty per page, each with the item id, title, price, condition, image, seller handle, feedback score, and units sold.
Use it to scan a marketplace at depth, since it returns more rows per call than any other listing endpoint here, then pull detail by item id.
Searching 49 platforms in parallel
What can you do with the Search API?
The Search endpoint gives you structured eBay data with computed fields in a single request. No scraping infrastructure to build or maintain.
Example Request
curl -H "x-api-key: YOUR_API_KEY" \
"https://www.socialcrawl.dev/v1/ebay/search?query=airpods+pro"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/ebay/search",
params={
'query': 'airpods pro',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/ebay/search?query=airpods+pro",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();Parameters
| Parameter | Required | Description |
|---|---|---|
| query | Yes | Free-text listing search, for example airpods pro or vintage seiko. |
| country | No | eBay marketplace as a two-letter country code: US (ebay.com, default), GB, AU, CA, DE, FR, IT, ES, IE, AT, CH, NL, BE, PL, SG, MY, PH, HK, or MX. The marketplace sets the listing pool, language, and currency. (US | GB | AU | CA | DE | FR | IT | ES | IE | AT | CH | NL | BE | PL | SG | MY | PH | HK | MX) |
| page | No | Page number, starting at 1. Prefer the universal cursor parameter. |
| sort_by | No | Result ordering: best_match (default), price_low, price_high, newly_listed, or ending_soonest. (best_match | price_low | price_high | newly_listed | ending_soonest) |
| condition | No | Restrict to one item condition: new, opened_box, refurbished, or used. (new | opened_box | refurbished | used) |
| buying_format | No | Restrict to one sale type: auction, buy_it_now, or accepts_offers. (auction | buy_it_now | accepts_offers) |
| show_only | No | eBay refinement token taken from a previous response, for example free_shipping or sold_items. |
| min_price | No | Lowest price to include. Applied by eBay and approximate, so filter on product.price.current if you need a hard bound. |
| max_price | No | Highest price to include. Applied by eBay and approximate, so filter on product.price.current if you need a hard bound. |
| aspects | No | Category-specific item aspect filter taken from a previous response, for example Brand:Apple. |
How does the eBay Search API work?
Send a GET request with your API key and get back clean, structured JSON in our unified schema. Supported computed fields are populated when the source provides the required inputs.
Method
GET
Response
JSON
How do you scrape social media data in seconds?
The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 49 platforms covering 10B+ monthly active users.
One schema, every platform
Query 49 platforms with identical response structures. Write your integration once.
Computed fields, not just scraped
When an endpoint supports these metrics and the source provides the required inputs, the normalized record includes engagement_rate, estimated_reach, content_category, and language — ready to use.
See your data before you code
Visual Data Explorer — paste any URL, get rich result cards, sortable tables, CSV export.
import requests
response = requests.get(
'https://www.socialcrawl.dev/v1/tiktok/profile',
params={'handle': 'charlidamelio'},
headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json(){
"success": true,
"platform": "tiktok",
"data": {
"author": {
"username": "charlidamelio",
"followers": 152400000
},
"engagement": {
"likes": 12400000000,
"engagement_rate": 0.087
},
"metadata": {
"language": "en",
"content_category": "lifestyle"
}
}
}Have a question? We got answers
Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.
Contact usHow many listings come back per call?
Can I filter by item condition?
Do search rows include the seller?
Is the result total returned?
How do I sort eBay search results?
Ask AI about SocialCrawl
Ready to scrape eBay Search data?
Get your API key and start pulling eBay data in under 60 seconds.
