You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/EBayApi.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -108,7 +108,7 @@ public class Example {
108
108
109
109
Completed / sold listings
110
110
111
-
Search completed/sold listings — eBay's sold-price history.
111
+
Search completed/sold listings — eBay's sold-price history. eBay pads a short result set with \"results matching fewer words\" and counts only the exact ones in ``pagination.total_results``. Results come back in eBay's own ranking order with the exact matches first, and each one carries ``exact_match`` (true/false) so a price series can be built without parsing titles. An empty ``results`` with ``total_results: 0`` is eBay's own answer and costs 0 credits — a fetch failure is never a 200.
Copy file name to clipboardExpand all lines: src/main/java/com/scrapebadger/client/api/EBayApi.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -377,7 +377,7 @@ private okhttp3.Call ebayCompletedSoldListingsValidateBeforeCall(String query, S
377
377
378
378
/**
379
379
* Completed / sold listings
380
-
* Search completed/sold listings — eBay's sold-price history.
380
+
* Search completed/sold listings — eBay's sold-price history. eBay pads a short result set with \"results matching fewer words\" and counts only the exact ones in ``pagination.total_results``. Results come back in eBay's own ranking order with the exact matches first, and each one carries ``exact_match`` (true/false) so a price series can be built without parsing titles. An empty ``results`` with ``total_results: 0`` is eBay's own answer and costs 0 credits — a fetch failure is never a 200.
381
381
* @param query Search keywords (required)
382
382
* @param domain Marketplace domain (com, co.uk, de …) (optional, default to com)
383
383
* @param categoryId Restrict to a category id (optional)
* Search completed/sold listings — eBay's sold-price history.
409
+
* Search completed/sold listings — eBay's sold-price history. eBay pads a short result set with \"results matching fewer words\" and counts only the exact ones in ``pagination.total_results``. Results come back in eBay's own ranking order with the exact matches first, and each one carries ``exact_match`` (true/false) so a price series can be built without parsing titles. An empty ``results`` with ``total_results: 0`` is eBay's own answer and costs 0 credits — a fetch failure is never a 200.
410
410
* @param query Search keywords (required)
411
411
* @param domain Marketplace domain (com, co.uk, de …) (optional, default to com)
412
412
* @param categoryId Restrict to a category id (optional)
@@ -436,7 +436,7 @@ public ApiResponse<Object> ebayCompletedSoldListingsWithHttpInfo(String query, S
436
436
437
437
/**
438
438
* Completed / sold listings (asynchronously)
439
-
* Search completed/sold listings — eBay's sold-price history.
439
+
* Search completed/sold listings — eBay's sold-price history. eBay pads a short result set with \"results matching fewer words\" and counts only the exact ones in ``pagination.total_results``. Results come back in eBay's own ranking order with the exact matches first, and each one carries ``exact_match`` (true/false) so a price series can be built without parsing titles. An empty ``results`` with ``total_results: 0`` is eBay's own answer and costs 0 credits — a fetch failure is never a 200.
440
440
* @param query Search keywords (required)
441
441
* @param domain Marketplace domain (com, co.uk, de …) (optional, default to com)
442
442
* @param categoryId Restrict to a category id (optional)
Copy file name to clipboardExpand all lines: src/test/java/com/scrapebadger/client/api/EBayApiTest.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ public void ebayBrowseACategoryTest() throws ApiException {
55
55
/**
56
56
* Completed / sold listings
57
57
*
58
-
* Search completed/sold listings — eBay's sold-price history.
58
+
* Search completed/sold listings — eBay's sold-price history. eBay pads a short result set with \"results matching fewer words\" and counts only the exact ones in ``pagination.total_results``. Results come back in eBay's own ranking order with the exact matches first, and each one carries ``exact_match`` (true/false) so a price series can be built without parsing titles. An empty ``results`` with ``total_results: 0`` is eBay's own answer and costs 0 credits — a fetch failure is never a 200.
0 commit comments