In order to make API calls, you need to be familiar with the hostname options to identify your tenant, site, and environment as well as any context headers you may need to include.Documentation Index
Fetch the complete documentation index at: https://docs.kibocommerce.com/llms.txt
Use this file to discover all available pages before exploring further.
API Host
You can make calls to either a production or sandbox environment, as well as optionally include a Site ID (s00000) in addition to the required Tenant ID (t00000). The tp0 is your tenant’s assigned production pod for making calls to production environments.
- Example US Sandbox Tenant:
https://t10000.sandbox.mozu.com/api - Example US Production Tenant:
https://t10000.tp0.mozu.com/api - Example EU Sandbox Tenant:
https://t100000.sb.euw0.kibocommerce.com/api - Example EU Production Tenant:
https://t100000.tp0.euw1.kibocommerce.com/api - Example GCP EUW4 Sandbox Tenant:
https://t00000.sb.euw4.gcp.kibocommerce.com/api - Example GCP EUW4 Production Tenant:
https://t00000.tp0.euw4.gcp.kibocommerce.com/api
API Headers
The request header must include an API context which often identifies the site and catalog you are referencing. If you use the hostname format that includes the Site ID, then the master catalog, catalog, site, locale, and currency context are inferred by the site and do not need to be explicitly provided. Likewise, the tenant is usually not necessary in the header since the tenant ID is already included in the hostname. The following is an example explicitly defining that context:Supported Headers
The following table details all headers supported by Kibo, though most are not required for every API operation.| Header | Type | Value |
|---|---|---|
| x-vol-catalog | request and response | The identifier of the catalog. Your first catalog is 1, the second catalog is 2, and so on. |
| x-vol-master-catalog | request and response | The identifier of the master catalog. Your first master catalog is 1, the second catalog is 2, and so on. |
| x-vol-site | request and response | The unique identifier of the site. This number can be found in the URL of the live site as well as some areas of the Admin, such as under System > Structure > Site, preceded by an “s-”. For example: https://t0000.sandbox.mozu.com/Admin/s-**11111**/website in a sandbox environment. |
| x-vol-tenant | request and response | The unique identifier of the tenant. This number appears in your site’s URL in Admin, preceded by a “t”. For example: https://t**0000**.sandbox.mozu.com/Admin/m-1/ in a sandbox environment. |
| x-vol-has-error | response | If true (1), the response contains an error. |
| x-vol-locale | request and response | The code of the content locale. For example: en-US |
| x-vol-version | request and response | The version of the API to use in the request. If the version is not specified, the request uses the latest available version. |
| x-vol-currency | request and response | The three-letter ISO 4217 standard global currency code. For example: USD |
| x-vol-purchase-location | request | The location code of the store that you want to restrict your call to, such as for querying products only at that particular location. |
| x-vol-pricelist | request | The code of the pricelist that you want to restrict your call to, such as when querying for products. |
| x-vol-correlation | request | An optional GUID used to associate multiple log entries in a cascading chain of API requests. |
| x-vol-dataview-mode | request | The mode in which to view runtime data, which is Live or Pending. |
| x-api-version | request | Used only with the Products API to indicate whether Version 1 or 2 is being used (value “1” or “2”). Version 2 allows support for multi-locale catalogs and is the default for all new implementations as of May 2024. |

