Ebay Buy Browse
Connector for the ebay-buy-browse API, generated deterministically from its OpenAPI spec (endpoints, auth, and methods match the spec exactly — nothing is invented).
- 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>