# Retrieve a catalog product by SKU **GET /catalog/product/** Fetches details of a product in the catalog. ## Servers - production: https://m2e.cloud/api/v1/api (production) - dev: https://sales-channels.m2ecloud.dev/api/v1/api (dev) - local: https://10.0.30.15:56000/api/v1/api (local) ## Authentication methods - Jwt ## Parameters ### Query parameters - **sku** (string) The Stock Keeping Unit (SKU) of the product. ## Responses ### 200 Successfully deleted products in catalog. #### Headers - **X-RateLimit-Limit** () The number of allowed requests in the current period. - **X-RateLimit-Remaining** () The number of remaining requests in the current period. - **X-RateLimit-Retry-After** () The date of number of remaining requests will reset. #### Body: application/json (object) - **token** (string(uuid)) A unique token that identifies the product. - **external_id** (null | string) An external identifier for the product, typically used for mapping with external systems. - **sku** (null | string) Stock Keeping Unit (SKU). - **quantity** (integer) The available stock quantity for the variant. - **is_simple** (boolean) Indicates whether the product is a simple product (true) or has variants (false). - **status** (string) The current status of the product. - **title** (string) The name or title of the product. - **images** (array[string(url)]) A list of image URLs representing the product. - **attributes** (array[object]) A list of key-value pairs representing attributes. - **update_date** (string(date-time)) The date and time when the product was last updated, in ISO 8601 format. - **variants** (array[object]) A list of product variants. ### 400 Bad request #### Headers - **X-RateLimit-Limit** () The number of allowed requests in the current period. - **X-RateLimit-Remaining** () The number of remaining requests in the current period. - **X-RateLimit-Retry-After** () The date of number of remaining requests will reset. #### Body: application/json (array[object]) - **code** (string) An error code that identifies the type of error that occurred. - **message** (string) A message that describes the error condition in a human-readable form. - **data** (object | array) Additional information that can help the caller understand or fix the issue. ### 404 Not found #### Body: application/json (array[object]) - **code** (string) An error code that identifies the type of error that occurred. - **message** (string) A message that describes the error condition in a human-readable form. - **data** (object | array) Additional information that can help the caller understand or fix the issue. ### 401 Unauthorized #### Body: application/json (array[object]) - **code** (string) An error code that identifies the type of error that occurred. - **message** (string) A message that describes the error condition in a human-readable form. - **data** (object | array) Additional information that can help the caller understand or fix the issue. ### 429 Too many requests #### Headers - **X-RateLimit-Limit** () The number of allowed requests in the current period. - **X-RateLimit-Remaining** () The number of remaining requests in the current period. - **X-RateLimit-Retry-After** () The date of number of remaining requests will reset. #### Body: application/json (array[object]) - **code** (string) An error code that identifies the type of error that occurred. - **message** (string) A message that describes the error condition in a human-readable form. - **data** (object | array) Additional information that can help the caller understand or fix the issue. ### 500 Internal server error #### Body: application/json (array[object]) - **code** (string) An error code that identifies the type of error that occurred. - **message** (string) A message that describes the error condition in a human-readable form. - **data** (object | array) Additional information that can help the caller understand or fix the issue. [Powered by Bump.sh](https://bump.sh)