eBay Search API
API 한 번의 호출로 eBay Search 데이터를 받아 가세요. 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.
2026년 8월 업데이트SocialCrawl 팀이 직접 관리해요
키워드에 맞는 eBay 매물을 페이지당 60건씩 품목 id, 제목, 가격, 상태, 이미지, 판매자 계정, 피드백 점수, 판매 수량과 함께 반환합니다.
한 번에 가장 많은 행을 주는 목록 엔드포인트라 시장을 넓게 훑을 때 쓰세요. 이후 품목 id로 상세를 가져오면 됩니다.
49개 플랫폼을 병렬로 검색합니다
Search API로 무엇을 할 수 있을까요
Search 엔드포인트가 통합 스키마와 계산 필드를 담은 eBay 데이터를 한 번의 요청으로 보내드려요. 스크래핑 인프라를 직접 만들거나 유지할 필요가 없어요.
요청 예시
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();파라미터
| 파라미터 | 필수 | 설명 |
|---|---|---|
| query | 예 | Free-text listing search, for example airpods pro or vintage seiko. |
| country | 아니오 | 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 | 아니오 | Page number, starting at 1. Prefer the universal cursor parameter. |
| sort_by | 아니오 | 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 | 아니오 | Restrict to one item condition: new, opened_box, refurbished, or used. (new | opened_box | refurbished | used) |
| buying_format | 아니오 | Restrict to one sale type: auction, buy_it_now, or accepts_offers. (auction | buy_it_now | accepts_offers) |
| show_only | 아니오 | eBay refinement token taken from a previous response, for example free_shipping or sold_items. |
| min_price | 아니오 | Lowest price to include. Applied by eBay and approximate, so filter on product.price.current if you need a hard bound. |
| max_price | 아니오 | Highest price to include. Applied by eBay and approximate, so filter on product.price.current if you need a hard bound. |
| aspects | 아니오 | Category-specific item aspect filter taken from a previous response, for example Brand:Apple. |
eBay Search API는 어떻게 동작하나요
API 키와 함께 GET 요청을 보내면, 통합 스키마와 계산 필드를 담은 깔끔한 JSON이 돌아와요.
메서드
GET
응답 형식
JSON
소셜 미디어 데이터를 몇 초 만에 수집하는 방법
개발자를 위한 가장 빠른 소셜 미디어 스크래핑 API. 월간 활성 사용자 100억 명 이상을 포괄하는 49개 플랫폼에서 프로필, 게시물, 댓글, 분석 데이터를 수집하세요.
모든 플랫폼을 하나의 스키마로
동일한 응답 구조로 49개 플랫폼을 조회하세요. 연동은 한 번이면 충분합니다.
단순 수집을 넘어 계산된 필드 제공
엔드포인트가 해당 지표를 지원하고 계산에 필요한 원본 값이 있을 때, 정규화된 레코드에 engagement_rate, estimated_reach, content_category, language를 함께 담아 바로 활용할 수 있습니다.
코드 한 줄 쓰기 전에, 데이터부터
Visual Data Explorer — URL만 붙여넣으면 결과 카드, 정형화된 테이블, CSV 내보내기 기능을 제공합니다.
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"
}
}
}자주 묻는 질문
API, 요금제, 기능에 대한 질문과 답변입니다.
문의하기한 번에 매물이 몇 개 오나요?
상품 상태로 걸러낼 수 있나요?
검색 결과에 판매자 정보도 오나요?
총 결과 수도 함께 오나요?
eBay 검색 결과 정렬은 어떻게 하나요?
AI에게 SocialCrawl을 물어보세요
eBay Search 데이터, 가져올 준비 되셨어요?
API 키 받고 60초 안에 eBay 데이터를 받아 가세요.
