Discover/Axiz API
live

Axiz APIaxiz.com

Access Axiz Digital's B2B IT product catalog: search products, get categories, brands, stores, exchange rates, and landing settings via 7 structured endpoints.

Endpoint health
verified 4d ago
get_product_details
get_stores
get_landing_settings
get_brands
search_products
7/7 passing latest checkself-healing
Endpoints
7
Updated
18d ago

What is the Axiz API?

The Axiz.com API exposes 7 endpoints covering Axiz Digital's B2B IT distributor catalog for the South African market, including product search with stock and brand filters, full product detail retrieval, and a live USD/ZAR exchange rate feed. The search_products endpoint returns paginated listings with pricing, availability, promotions, and brand metadata, while get_product_details delivers image galleries, specifications, and feature lists for individual SKUs.

Try it
Market ID. Use '14' (South Africa) for reliable results.
api.parse.bot/scraper/c7621ea3-2d81-4767-b782-120d15897bf1/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/c7621ea3-2d81-4767-b782-120d15897bf1/get_categories?market=14' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace axiz-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Axiz Digital SDK — B2B IT product catalog search and drill-down."""
from parse_apis.axiz_digital_api import Axiz, StockFilter, ProductNotFound

client = Axiz()

# List available categories in the catalog.
for cat in client.categories.list(limit=5):
    print(cat.id, cat.name)

# List available brands.
for brand in client.brands.list(limit=5):
    print(brand.id, brand.name)

# Search for in-stock laptops, capped at 3 results.
product = client.products.search(category="Laptop", soh=StockFilter.IN_STOCK, limit=3).first()
if product:
    print(product.name, product.price, product.brand_info.brand_name)

    # Drill into full product details (specs, gallery, features).
    try:
        detail = product.details(brand_id=str(product.brand_info.brand_id))
        print(detail.name, detail.category, detail.currency_code)
        for img in detail.product_image_gallery:
            print(img.image_url)
    except ProductNotFound as exc:
        print(f"Product not found: {exc}")

# Fetch current USD to ZAR exchange rate.
rate = client.exchangerates.get()
print(rate.rate, rate.from_currency, rate.to_currency)

# Fetch landing page settings with banners and widgets.
settings = client.landingsettingses.get()
print(settings.settings_id, settings.market_filters)

print("exercised: categories.list / brands.list / products.search / product.details / exchangerates.get / landingsettingses.get")
All endpoints · 7 totalmissing one? ·

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.

Input
ParamTypeDescription
marketstringMarket ID. Use '14' (South Africa) for reliable results.
Response
{
  "type": "object",
  "fields": {
    "items": "array of category objects each with id (string) and name (string)"
  },
  "sample": {
    "data": {
      "items": [
        {
          "id": "Laptop",
          "name": "Laptop"
        },
        {
          "id": "Desktop",
          "name": "Desktop"
        },
        {
          "id": "Monitors",
          "name": "Monitors"
        }
      ]
    },
    "status": "success"
  }
}

About the Axiz API

Product Search and Filtering

The search_products endpoint accepts a combination of filters: query for text-based search, category for product type (e.g., Laptop, Monitors, Desktop, Servers), brand for manufacturer (e.g., Dell, HPE, Kingston, Targus), and soh to restrict results to in-stock items only. Results are paginated via page (0-based index) and limit, and the response data object includes totalCount alongside an items array carrying price, availability, promotion flags, and brandInfo. All filter values for category and brand should be sourced from the get_categories and get_brands endpoints respectively.

Product Details and Catalog Metadata

get_product_details requires a sku (from search_products results as productIdentifier) and a brand_id (from brandInfo.brandId). The response includes the full product name, price, category placement, structured specifications, feature lists, description text, and an image gallery. The market parameter defaults reliably to '14' (South Africa); other market IDs are not supported and will cause upstream errors.

The get_categories and get_brands endpoints return flat arrays of id/name objects used to populate filter dropdowns. The get_stores endpoint returns store view objects with descriptions and status, but only when market is set to '14' — other values return an empty array.

Exchange Rates and Landing Page Settings

get_exchange_rate returns a single numeric value representing the current USD to ZAR rate for today's effective date, scoped to market '14'. The get_landing_settings endpoint takes no inputs and returns structured page configuration including storeBanners, widgets, imageBanners, marketFilters, settingsId, and a subscribeWidget configuration — useful for replicating Axiz's regional storefront layout or surfacing promotional content.

Reliability & maintenanceVerified

The Axiz API is a managed, monitored endpoint for axiz.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when axiz.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official axiz.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
7/7 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a B2B IT procurement tool that searches Axiz's catalog by category and brand with live stock status
  • Display current USD/ZAR exchange rates alongside product prices for South African IT resellers
  • Sync Axiz product specifications and image galleries into an internal PIM or ERP system
  • Generate category and brand filter menus for a custom storefront using get_categories and get_brands
  • Monitor product availability changes by comparing soh-filtered search results over time
  • Render Axiz landing page banners and promotional widgets within a partner portal using get_landing_settings
  • Aggregate distributor pricing data across Dell, HPE, Kingston, and Lenovo SKUs for price comparison tooling
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Axiz have an official public developer API?+
Axiz does not publish a documented public developer API. This Parse API provides structured access to their B2B IT product catalog data.
What does search_products return beyond basic product names?+
Each item in the items array includes price, stock availability, promotion flags, and a brandInfo object containing the brand name and brandId. The totalCount field in the response lets you handle pagination correctly using the page and limit parameters.
Which markets does this API support?+
Market ID '14' (South Africa) is the only reliably supported market. get_stores and get_exchange_rate both return empty or error responses for any other market value, and product search results are also tied to this market. The API currently covers the South African Axiz catalog only. You can fork it on Parse and revise to add support for other regional markets if Axiz expands availability.
Does the API expose historical pricing or price change history?+
Not currently. The API returns current pricing from product listings and today's USD/ZAR exchange rate via get_exchange_rate, but no historical price records or price trend data are exposed. You can fork the API on Parse and revise it to add an endpoint that records and compares prices over time.
How do I get full product details — can I use search results directly?+
Search results from search_products include summary-level data. To get specifications, feature lists, and the image gallery for a specific product, call get_product_details with the sku (from productIdentifier) and brand_id (from brandInfo.brandId) returned in the search results. Both fields are required.
Page content last updated . Spec covers 7 endpoints from axiz.com.
Related APIs in EcommerceSee all →
bidorbuy.co.za API
Search and browse products on Bob Shop, view detailed product information, seller profiles and ratings, explore category listings, and discover current promotions. Get search suggestions and navigate the complete product catalog to find exactly what you're looking for.
cityelectricsupply.com API
Search and browse City Electric Supply's product catalog across categories, view detailed product information with localized pricing and inventory based on a ZIP code, and manage a shopping cart. Access product details and real-time stock availability for any area.
products.checkers.co.za API
Search and browse products from Checkers South Africa's online store, compare prices, and discover current specials and deals. Explore the complete product catalog by category to find items and get detailed product information all in one place.
xcite.com API
Access product listings, categories, search, reviews, specifications, brand stores, and physical store locations from Xcite.com, Kuwait's leading electronics retailer.
vistaprint.com API
Search and browse Vistaprint's catalog of 5,800+ products across business cards, promotional items, clothing, signage, and packaging, with instant access to product names, quantities, pricing, and detailed specifications. Filter by category or search for specific items to compare options and get complete product information for your ordering decisions.
checkers.co.za API
Search for groceries, browse product categories, and find Checkers store locations across South Africa all in one place. Get detailed product information, discover popular items, and locate the nearest store to shop conveniently.
bizbuysell.com API
Search for businesses available for sale across multiple categories and view detailed information about specific listings on BizBuySell.com. Browse business categories to explore different industries and find opportunities that match your investment interests.
zumiez.com API
Search Zumiez products by keyword, browse products by category path, and fetch detailed product information (pricing, images, stock status, and attributes) using a product group ID.