Skip to content

Latest commit

 

History

History
955 lines (672 loc) · 28.7 KB

File metadata and controls

955 lines (672 loc) · 28.7 KB

ScrapeBadger\EBayApi

All URIs are relative to https://scrapebadger.com, except if the operation defines another base path.

Method HTTP request Description
ebayBrowseACategory() GET /v1/ebay/categories/{category_id}/items Browse a category
ebayCompletedSoldListings() GET /v1/ebay/completed Completed / sold listings
ebayEbayScraperHealthCheck() GET /v1/ebay/health eBay scraper health check
ebayEbayScraperHealthCheckHead() HEAD /v1/ebay/health eBay scraper health check
ebayGetItemDetail() GET /v1/ebay/items/{item_id} Get item detail
ebayGetItemReviews() GET /v1/ebay/items/{item_id}/reviews Get item reviews
ebayGetSellerFeedback() GET /v1/ebay/sellers/{username}/feedback Get seller feedback
ebayGetSellerListings() GET /v1/ebay/sellers/{username}/items Get seller listings
ebayGetSellerProfile() GET /v1/ebay/sellers/{username} Get seller profile
ebayKeywordSuggestions() GET /v1/ebay/autocomplete Keyword suggestions
ebayListCategories() GET /v1/ebay/categories List categories
ebayListMarkets() GET /v1/ebay/markets List markets
ebaySearchByImage() POST /v1/ebay/search/by-image Search by image
ebaySearchListings() GET /v1/ebay/search Search listings

ebayBrowseACategory()

ebayBrowseACategory($category_id, $domain, $page, $per_page, $sort_by, $min_price, $max_price): mixed

Browse a category

List active listings within an eBay category.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure API key authorization: ApiKeyAuth
$config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKey('X-API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Key', 'Bearer');


$apiInstance = new ScrapeBadger\Api\EBayApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$category_id = 'category_id_example'; // string
$domain = 'com'; // string
$page = 1; // int
$per_page = 56; // int
$sort_by = 'best_match'; // string | best_match|ending_soonest|newly_listed|price_low_to_high|price_high_to_low
$min_price = 3.4; // float
$max_price = 3.4; // float

try {
    $result = $apiInstance->ebayBrowseACategory($category_id, $domain, $page, $per_page, $sort_by, $min_price, $max_price);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling EBayApi->ebayBrowseACategory: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
category_id string
domain string [optional] [default to 'com']
page int [optional] [default to 1]
per_page int [optional]
sort_by string best_match ending_soonest
min_price float [optional]
max_price float [optional]

Return type

mixed

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ebayCompletedSoldListings()

ebayCompletedSoldListings($query, $domain, $category_id, $page, $per_page, $sort_by, $condition, $min_price, $max_price, $location, $language): mixed

Completed / sold listings

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.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure API key authorization: ApiKeyAuth
$config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKey('X-API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Key', 'Bearer');


$apiInstance = new ScrapeBadger\Api\EBayApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$query = 'query_example'; // string | Search keywords
$domain = 'com'; // string | Marketplace domain (com, co.uk, de …)
$category_id = 'category_id_example'; // string | Restrict to a category id
$page = 1; // int
$per_page = 56; // int | 60, 120 or 240
$sort_by = 'best_match'; // string | best_match|ending_soonest|newly_listed|price_low_to_high|price_high_to_low
$condition = 'condition_example'; // string | new|open_box|refurbished|used|for_parts|graded|ungraded
$min_price = 3.4; // float
$max_price = 3.4; // float
$location = 'location_example'; // string | domestic|worldwide
$language = 'language_example'; // string | english|japanese|chinese|korean

try {
    $result = $apiInstance->ebayCompletedSoldListings($query, $domain, $category_id, $page, $per_page, $sort_by, $condition, $min_price, $max_price, $location, $language);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling EBayApi->ebayCompletedSoldListings: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
query string Search keywords
domain string Marketplace domain (com, co.uk, de …) [optional] [default to 'com']
category_id string Restrict to a category id [optional]
page int [optional] [default to 1]
per_page int 60, 120 or 240 [optional]
sort_by string best_match ending_soonest
condition string new open_box
min_price float [optional]
max_price float [optional]
location string domestic worldwide
language string english japanese

Return type

mixed

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ebayEbayScraperHealthCheck()

ebayEbayScraperHealthCheck(): mixed

eBay scraper health check

Check health of the eBay scraper service (accepts HEAD for UptimeRobot).

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure API key authorization: ApiKeyAuth
$config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKey('X-API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Key', 'Bearer');


$apiInstance = new ScrapeBadger\Api\EBayApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);

try {
    $result = $apiInstance->ebayEbayScraperHealthCheck();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling EBayApi->ebayEbayScraperHealthCheck: ', $e->getMessage(), PHP_EOL;
}

Parameters

This endpoint does not need any parameter.

Return type

mixed

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ebayEbayScraperHealthCheckHead()

ebayEbayScraperHealthCheckHead(): mixed

eBay scraper health check

Check health of the eBay scraper service (accepts HEAD for UptimeRobot).

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure API key authorization: ApiKeyAuth
$config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKey('X-API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Key', 'Bearer');


$apiInstance = new ScrapeBadger\Api\EBayApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);

try {
    $result = $apiInstance->ebayEbayScraperHealthCheckHead();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling EBayApi->ebayEbayScraperHealthCheckHead: ', $e->getMessage(), PHP_EOL;
}

Parameters

This endpoint does not need any parameter.

Return type

mixed

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ebayGetItemDetail()

ebayGetItemDetail($item_id, $domain): mixed

Get item detail

Get a single eBay listing's full detail.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure API key authorization: ApiKeyAuth
$config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKey('X-API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Key', 'Bearer');


$apiInstance = new ScrapeBadger\Api\EBayApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$item_id = 'item_id_example'; // string
$domain = 'com'; // string

try {
    $result = $apiInstance->ebayGetItemDetail($item_id, $domain);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling EBayApi->ebayGetItemDetail: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
item_id string
domain string [optional] [default to 'com']

Return type

mixed

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ebayGetItemReviews()

ebayGetItemReviews($item_id, $domain, $page): mixed

Get item reviews

Get catalog product reviews shown on an eBay listing.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure API key authorization: ApiKeyAuth
$config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKey('X-API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Key', 'Bearer');


$apiInstance = new ScrapeBadger\Api\EBayApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$item_id = 'item_id_example'; // string
$domain = 'com'; // string
$page = 1; // int

try {
    $result = $apiInstance->ebayGetItemReviews($item_id, $domain, $page);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling EBayApi->ebayGetItemReviews: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
item_id string
domain string [optional] [default to 'com']
page int [optional] [default to 1]

Return type

mixed

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ebayGetSellerFeedback()

ebayGetSellerFeedback($username, $domain, $page): mixed

Get seller feedback

Get a seller's recent feedback comments.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure API key authorization: ApiKeyAuth
$config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKey('X-API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Key', 'Bearer');


$apiInstance = new ScrapeBadger\Api\EBayApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$username = 'username_example'; // string
$domain = 'com'; // string
$page = 1; // int

try {
    $result = $apiInstance->ebayGetSellerFeedback($username, $domain, $page);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling EBayApi->ebayGetSellerFeedback: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
username string
domain string [optional] [default to 'com']
page int [optional] [default to 1]

Return type

mixed

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ebayGetSellerListings()

ebayGetSellerListings($username, $domain, $query, $page, $per_page): mixed

Get seller listings

List the active listings of a single eBay seller.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure API key authorization: ApiKeyAuth
$config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKey('X-API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Key', 'Bearer');


$apiInstance = new ScrapeBadger\Api\EBayApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$username = 'username_example'; // string
$domain = 'com'; // string
$query = 'query_example'; // string
$page = 1; // int
$per_page = 56; // int

try {
    $result = $apiInstance->ebayGetSellerListings($username, $domain, $query, $page, $per_page);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling EBayApi->ebayGetSellerListings: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
username string
domain string [optional] [default to 'com']
query string [optional]
page int [optional] [default to 1]
per_page int [optional]

Return type

mixed

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ebayGetSellerProfile()

ebayGetSellerProfile($username, $domain): mixed

Get seller profile

Get an eBay seller's public profile.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure API key authorization: ApiKeyAuth
$config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKey('X-API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Key', 'Bearer');


$apiInstance = new ScrapeBadger\Api\EBayApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$username = 'username_example'; // string
$domain = 'com'; // string

try {
    $result = $apiInstance->ebayGetSellerProfile($username, $domain);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling EBayApi->ebayGetSellerProfile: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
username string
domain string [optional] [default to 'com']

Return type

mixed

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ebayKeywordSuggestions()

ebayKeywordSuggestions($query, $domain): mixed

Keyword suggestions

Return eBay keyword autocomplete suggestions.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure API key authorization: ApiKeyAuth
$config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKey('X-API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Key', 'Bearer');


$apiInstance = new ScrapeBadger\Api\EBayApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$query = 'query_example'; // string | Partial query prefix
$domain = 'com'; // string

try {
    $result = $apiInstance->ebayKeywordSuggestions($query, $domain);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling EBayApi->ebayKeywordSuggestions: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
query string Partial query prefix
domain string [optional] [default to 'com']

Return type

mixed

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ebayListCategories()

ebayListCategories(): mixed

List categories

List eBay's top-level category ids.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure API key authorization: ApiKeyAuth
$config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKey('X-API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Key', 'Bearer');


$apiInstance = new ScrapeBadger\Api\EBayApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);

try {
    $result = $apiInstance->ebayListCategories();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling EBayApi->ebayListCategories: ', $e->getMessage(), PHP_EOL;
}

Parameters

This endpoint does not need any parameter.

Return type

mixed

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ebayListMarkets()

ebayListMarkets(): mixed

List markets

List all supported eBay marketplaces.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure API key authorization: ApiKeyAuth
$config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKey('X-API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Key', 'Bearer');


$apiInstance = new ScrapeBadger\Api\EBayApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);

try {
    $result = $apiInstance->ebayListMarkets();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling EBayApi->ebayListMarkets: ', $e->getMessage(), PHP_EOL;
}

Parameters

This endpoint does not need any parameter.

Return type

mixed

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ebaySearchByImage()

ebaySearchByImage($request_body): mixed

Search by image

Search active listings by image, the way eBay's camera icon does. No sort_by: eBay ignores it on a visual results page.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure API key authorization: ApiKeyAuth
$config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKey('X-API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Key', 'Bearer');


$apiInstance = new ScrapeBadger\Api\EBayApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$request_body = NULL; // array<string,mixed>

try {
    $result = $apiInstance->ebaySearchByImage($request_body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling EBayApi->ebaySearchByImage: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
request_body array<string,mixed>

Return type

mixed

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ebaySearchListings()

ebaySearchListings($query, $domain, $category_id, $page, $per_page, $sort_by, $condition, $buying_format, $min_price, $max_price, $free_shipping, $location, $language): mixed

Search listings

Search an eBay marketplace for active listings.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure API key authorization: ApiKeyAuth
$config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKey('X-API-Key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = ScrapeBadger\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-API-Key', 'Bearer');


$apiInstance = new ScrapeBadger\Api\EBayApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$query = 'query_example'; // string | Search keywords
$domain = 'com'; // string | Marketplace domain (com, co.uk, de …)
$category_id = 'category_id_example'; // string | Restrict to a category id
$page = 1; // int
$per_page = 56; // int | 60, 120 or 240
$sort_by = 'best_match'; // string | best_match|ending_soonest|newly_listed|price_low_to_high|price_high_to_low
$condition = 'condition_example'; // string | new|open_box|refurbished|used|for_parts|graded|ungraded
$buying_format = 'buying_format_example'; // string | auction|buy_it_now|best_offer
$min_price = 3.4; // float
$max_price = 3.4; // float
$free_shipping = false; // bool
$location = 'location_example'; // string | domestic|worldwide
$language = 'language_example'; // string | english|japanese|chinese|korean

try {
    $result = $apiInstance->ebaySearchListings($query, $domain, $category_id, $page, $per_page, $sort_by, $condition, $buying_format, $min_price, $max_price, $free_shipping, $location, $language);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling EBayApi->ebaySearchListings: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
query string Search keywords
domain string Marketplace domain (com, co.uk, de …) [optional] [default to 'com']
category_id string Restrict to a category id [optional]
page int [optional] [default to 1]
per_page int 60, 120 or 240 [optional]
sort_by string best_match ending_soonest
condition string new open_box
buying_format string auction buy_it_now
min_price float [optional]
max_price float [optional]
free_shipping bool [optional] [default to false]
location string domestic worldwide
language string english japanese

Return type

mixed

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]