2026-07-06 · federated commerce · part 1 of 3

WooCommerce Already Has APIs. Federation Is the Missing Layer.

WooCommerce makes one store programmable. A Bridge makes independent stores composable without centralizing their data or checkout.

TL;DR — WooCommerce already exposes capable APIs. They make one store programmable. Federation asks a different question: how can many independently operated stores be discovered and searched through one contract without handing control to a central marketplace? A merchant-side Bridge is the adapter that makes each store composable. The Bridge is useful locally; the network appears only when merchants explicitly opt in.

WooCommerce does not have an API problem

Any credible discussion of an agent-facing WooCommerce catalog should begin with an admission: WooCommerce already exposes a great deal of product data.

Its authenticated REST API can create, read, update and delete products and other store resources. Its public Store API supports customer-facing product, cart and checkout experiences without API keys. Product queries can filter by search text, category, brand, attributes, price, sale state and stock status.

If a company is building an application for one known WooCommerce store, those APIs may be all it needs.

The Store API is not a weak interface waiting to be rescued by a plugin. It has precise conventions. Price filters use the currency’s smallest unit. Product responses declare currency_minor_unit. Variations are available but excluded from the default product collection and must be retrieved explicitly. These are reasonable design choices, and they are documented by WooCommerce.

The limitation appears only when the problem changes from integrating one known store to making unknown stores usable by unknown clients.

An API is not yet a network

Suppose an agent platform wants to search one hundred independent WooCommerce stores.

Every store may run the same ecommerce engine, but it does not necessarily use it in the same way. One merchant stores brand in WooCommerce Brands. Another uses a third-party taxonomy. A third uses a custom attribute. Categories, attribute names, shipping zones and stock configuration are merchant-defined. Plugins can add fields and alter behavior.

The platform must therefore answer questions that are local to each installation:

None of this is a failure of WooCommerce. It is the natural cost of integrating flexible software.

Comparison between bespoke agent-to-store adapters and a shared merchant-side Bridge contract
The Bridge does not create the source data. It moves store-specific interpretation to the side that already understands the store.

Without a shared contract, every consumer builds its own WooCommerce adapter. That may be acceptable for one integration. Across many stores and many clients, it becomes an N-by-M maintenance problem.

A merchant-side Bridge changes where that cost lives. WooCommerce-specific knowledge is implemented once, next to WooCommerce, and exposed through a contract that multiple clients can reuse.

What the local Bridge contributes

KaliCart Bridge is not a replacement database and does not need to move the catalog into a cloud service. Its core function runs on the merchant’s WordPress installation.

It publishes a read-only discovery document:

GET /wp-json/kalicart/v1/discovery

That document points to search, listing, product detail, categories, catalog metadata, OpenAPI and MCP surfaces. The current implementation also declares price encoding, variation behavior, supported filters, stock confidence and checkout boundaries.

KaliCart publishes this contract as ARC/1.0. ARC is not presented here as an industry-wide standard. It is the documented contract of the reference implementation: a client can inspect what the Bridge claims, and implementations can be tested against those claims.

The distinction is practical. A WooCommerce response might give a client all the raw fields needed to infer that a product has options. The Bridge can state the operational consequence directly:

{
  "price": {
    "type": "range",
    "current": 29.90,
    "currency": "EUR"
  },
  "stock": {
    "availability_status": "in_stock",
    "confidence": "variant_dependent"
  },
  "purchase_readiness": {
    "status": "variant_selection_required",
    "can_add_to_cart_directly": false
  }
}

The record does not make the underlying data truer. It makes the limits of the statement explicit.

The Bridge also offers summary projections for broad search and more detailed representations for verification. That reduces the cost of triage without pretending that a compact search result is enough to confirm every variation.

Local usefulness comes first

A Bridge installation is useful even if the merchant never joins a federated network.

An agent that reaches the merchant domain can find the catalog through the discovery URL, the HTML head signal or the published metadata. A developer can connect to the REST or MCP surface without receiving administrative WooCommerce credentials. The merchant can inspect quality signals for missing descriptions, categories, prices, images, SKUs and brands.

The plugin does not repair those fields automatically and does not hide imperfect products. It exposes the available data and declares the issues. The merchant remains responsible for correcting its catalog.

It also preserves the store’s own categories. Canonical cross-merchant classification belongs to the federation layer, not to the local plugin.

This separation matters because it lets the local interface remain useful and understandable without making participation in a central service mandatory.

Federation is the step WooCommerce does not perform by itself

The Store API makes a WooCommerce store queryable. It does not create a registry of independent merchants, obtain their consent, ingest their catalogs, reconcile identities or provide one cross-store search endpoint.

That is the federation problem.

Once participating stores expose the same local contract, an external index can perform a bounded set of tasks:

  1. discover and register Bridge nodes;
  2. verify that each merchant has opted into federation;
  3. read the public catalog without credentials;
  4. map merchant categories to a common routing taxonomy;
  5. preserve merchant and product identity;
  6. build a cross-merchant candidate index;
  7. return users and agents to the authoritative merchant storefront.
Agents querying a federated catalog backed by opted-in Bridge nodes and independent WooCommerce stores
The Global layer coordinates discovery. It does not become the merchant of record or replace the store’s checkout.

This is why the Bridge is more than another output format. Its strategic role is to make independently operated stores composable without requiring the index to scrape each storefront or negotiate a private integration with every merchant.

Why not federate the Store API directly?

A central service could attempt to discover and consume WooCommerce Store APIs without a plugin. Technically, that is possible for some stores.

It would still need an external source for several facts:

It would also have to detect WooCommerce, infer configuration and maintain compatibility with store-specific extensions from outside the store.

The Bridge moves those decisions to the merchant side. That does not eliminate federation work, but it changes it from open-ended reverse engineering into consumption of a declared contract.

Consent is part of the data model

Public readability and federated participation are not the same permission.

A merchant may expose product information to an agent visiting its domain while declining inclusion in a cross-merchant index. KaliCart separates those states. The local catalog remains available; federation requires an explicit merchant action and can be revoked.

When the merchant explicitly activates federation, the plugin sends the merchant’s public site URL to KaliCart Global. Global then reads the same public catalog that other agents can read. It does not receive customer records, orders, API keys or administrative credentials. This behavior is documented on the WordPress.org plugin page.

Consent does not prove that the catalog is correct. It establishes that the merchant has authorized this specific form of aggregation.

What belongs to the Bridge — and what belongs to Global

ResponsibilityLocal BridgeFederated layer
Read WooCommerce correctlyYesNo
Expose merchant categoriesYesPreserve source
Map cross-merchant categoriesNoYes
Declare local price and stock semanticsYesCarry provenance
Search across merchantsNoYes
Process checkout and paymentNoNo — merchant storefront
Control federation consentMerchant publishes itMust enforce it

The separation prevents a common architectural mistake: turning a central index into a second, competing source of commercial truth.

The ChatGPT feed is a parallel channel

KaliCart Bridge also generates a product feed compatible with OpenAI’s merchant onboarding format. That closes a different gap: producing a validated artifact for a platform-controlled discovery channel.

A feed is not the federated catalog. It is delivered to one platform after merchant application and approval. OpenAI controls eligibility and the delivery channel. The Bridge can generate the file; it cannot guarantee acceptance or visibility.

The local API, the optional federation and the ChatGPT feed all originate from the same WooCommerce catalog, but they solve different distribution problems.

The honest state of the network

A federated architecture can be operational before it is broadly adopted.

KaliCart Global currently exposes a working cross-merchant search surface and an MCP server, but the participating network is still small. It should not be described as an established marketplace or a universal WooCommerce index.

The defensible claim is narrower:

The Bridge provides the missing local contract from which a consent-based WooCommerce federation can be built.

Whether that network becomes economically meaningful depends on merchant participation and agent demand, not on protocol design alone.

The substantial difference

WooCommerce’s APIs answer:

How can software access this store?

The Bridge adds:

How can clients that were not built for this store discover and interpret its public catalog?

Federation adds the final question:

How can many autonomous stores become searchable through one interface without surrendering ownership of their data, customer relationship or checkout?

That is the reason to install the plugin. Not because WooCommerce lacks APIs, but because an API for one store and a network of stores are different systems.

Federated Commerce Series · Part 1 of 3 — Next: Shopify Has a Global Catalog. WooCommerce Has Independent Stores. The final article examines authority, freshness and consent once a federated network exists.

← All posts