Ebay Buy Browse
eBay Buy Browse is an eBay API for searching, browsing, and retrieving eBay marketplace item listings for buyer-facing applications.
- Base URL:
https://api.ebay.com/buy/browse/v1 - Auth: OAuth 2.0 client-credentials — the tool fetches a token from
https://api.ebay.com/identity/v1/oauth2/tokenusing yourclientId/clientSecret, then calls the API.
Operations
getitems— GET /item/ — This method retrieves the details of specific items that the buyer needs to makegetitembylegacyid— GET /item/get_item_by_legacy_id — This method is a bridge between the eBay legacy APIs, such as Shopping, and Findgetitemsbyitemgroup— GET /item/get_items_by_item_group — This method retrieves the details of the individual items in an item group. An igetitem— GET /item/{item_id} — This method retrieves the details of a specific item, such as description, pricesearch— GET /item_summary/search — This method searches for eBay items by various query parameters and retrieves sugetshoppingcart— GET /shopping_cart/ — This is an experimental method. This method retrieves all the items in the eBay
Inputs
clientId/clientSecret— your ebay-buy-browse OAuth app credentialsscope— OAuth scopes (optional; defaults from the spec)operation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: getitems
clientId: <your client id>
clientSecret: <your client secret>
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
clientId |
string | yes | — | OAuth client ID for ebay-buy-browse. |
clientSecret |
string | yes | — | OAuth client secret for ebay-buy-browse. |
operation |
string | yes | — | One of: getitems, getitembylegacyid, getitemsbyitemgroup, getitem, search, getshoppingcart |
scope |
string | no | https://api.ebay.com/oauth/api_scope/buy.shopping.cart |
OAuth scopes (space-separated); default from the spec. |
item_id |
string | no | — | Path parameter item_id (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |