> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wizcommerce.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Api debugging

Our API platform provides a feature to help debug API requests using a unique identifier called Request-Id.
This identifier is included in the response headers for every API request.
If you encounter any issues while using our API, please share the Request-Id with our support team to help
us investigate and resolve the problem efficiently.

### How It Works

* Each API request is assigned a unique Request-Id.
* The API includes this Request-Id in the response headers.
* In case of errors or unexpected behavior, the API user should provide this
  Request-Id when reaching out for support.

### Example

```bash theme={null}
curl -X GET "https://api.wizcommerce.com/v1/customers" -H "X-Request-Id: 1234567890"
```

```http theme={null}
GET /v1/customers HTTP/1.1
Host: api.wizcommerce.com
X-Request-Id: 1234567890
```
