Request Structure
How to structure your API requests to the Catalog Vendors API
This guide explains how to make requests to the Catalog Vendors API. This endpoint provides a summary of all vendors in the catalog, including their latest product update timestamps and product counts.
HTTP Method and Endpoint
All requests to the Catalog Vendors API use the GET method and should be sent to:
Headers
Every request must include these headers:
Header | Value | Description |
---|---|---|
x-api-key | YOUR_VALID_API_KEY | Your unique API key for authentication |
Unlike other Catalog API endpoints, the Vendors API doesn’t require a Content-Type
header since it uses GET requests with no request body.
Request Parameters
This endpoint doesn’t accept any query parameters or request body. Simply make a GET request with your API key header.
Example Request
cURL
JavaScript (fetch)
Python (requests)
Authentication
The API requires a valid API key passed in the x-api-key
header. If the API key is missing or invalid, you’ll receive a 401 Unauthorized
response.
Related Guides
- Response Structure - Understanding the Vendors API response format