# Axiz — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and browse IT products from Axiz.com's B2B catalog, access product details, categories, brands, and store information to find the right distributor solutions. Check real-time exchange rates and retrieve customized landing page settings for your region.

**Category:** E-commerce | **Website:** [axiz.com/](https://axiz.com/) | **Docs:** [parse.bot/marketplace/98a623fa-01c6-42c5-9fb5-6632f941d966/axiz-com-api](https://parse.bot/marketplace/98a623fa-01c6-42c5-9fb5-6632f941d966/axiz-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-axiz-com-api-98a623fa/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_brands

Retrieve the list of product brands available in the catalog. Each brand has an id and name usable as a filter in search_products.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `market` | string | No | Market ID. Use '14' (South Africa) for reliable results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-axiz-com-api-98a623fa/get_brands \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"market":"<string>"}'
```

### get_categories

Retrieve the list of product categories available in the Axiz Digital catalog. Each category has an id and name that can be used as a filter in search_products. The category set is stable but may grow over time.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `market` | string | No | Market ID. Use '14' (South Africa) for reliable results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-axiz-com-api-98a623fa/get_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"market":"<string>"}'
```

### get_exchange_rate

Retrieve the current USD to ZAR exchange rate for today's effective date. Only market '14' is supported.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `market` | string | No | Market ID. Only '14' (South Africa) returns exchange rate data. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-axiz-com-api-98a623fa/get_exchange_rate \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"market":"<string>"}'
```

### get_landing_settings

Retrieve landing page settings including store banners, promotional widgets, category navigation links, brand logos, and subscription widget configuration.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-axiz-com-api-98a623fa/get_landing_settings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_product_details

Retrieve full product details including image gallery, specifications, features, and descriptions. Requires a product SKU (productIdentifier) and brand ID from search_products results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `brand_id` | string | Yes | Brand ID number from search_products results[*].brandInfo.brandId (e.g., '7' for HPIC, '40' for Targus, '20' for Kingston). |
| `market` | string | No | Market ID. Use '14' (South Africa) for reliable results. |
| `sku` | string | Yes | Product SKU/identifier from search_products results[*].productIdentifier (e.g., 'AD3U0ET', 'SA400S37/960G'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-axiz-com-api-98a623fa/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"brand_id":"<string>","market":"<string>","sku":"<string>"}'
```

### get_stores

Retrieve store views (collections/deal pages) available in the marketplace. Each store has an id usable as view_id in search_products to scope results to that collection. Only market '14' returns data.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `market` | string | No | Market ID. Only '14' (South Africa) returns store data. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-axiz-com-api-98a623fa/get_stores \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"market":"<string>"}'
```

### search_products

Search for products with optional filters by category, brand, search text, and store view. Returns paginated results with price, availability, brand info, and promotions. Page index is 0-based. Use category values from get_categories, brand values from get_brands, and view_id from get_stores.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `brand` | string | No | Brand filter value from get_brands (e.g., 'Dell', 'HPE', 'HPIC', 'Kingston', 'Targus'). |
| `category` | string | No | Category filter value from get_categories (e.g., 'Laptop', 'Monitors', 'Desktop'). |
| `limit` | integer | No | Maximum number of results per page. |
| `market` | string | No | Market ID. Use '14' (South Africa) for reliable results. |
| `page` | integer | No | Page index (0-based). |
| `query` | string | No | Free-text search to filter products by name or description. |
| `soh` | integer | No | Stock on hand filter. 1 = in stock only, 0 = include out of stock. |
| `view_id` | string | No | Store view ID from get_stores. '0' searches all stores. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-axiz-com-api-98a623fa/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"brand":"<string>","category":"<string>","limit":"<integer>","market":"<string>","page":"<integer>","query":"<string>","soh":"<integer>","view_id":"<string>"}'
```
