API - Overview

API - Viewer, Configurator and Customizer

Retrieve products, link them to tools and create secure embedding sessions for Viewer, Configurator and Customizer.

Endpoint overview

MethodEndpointDescriptionAccess
GET/public-api/v1/productsReturns storefront products/designs with embed availability and media URLs.products:read
GET/public-api/v1/products/:idReturns one storefront product/design.products:read
POST/public-api/v1/embed/sessionIssues a short-lived JWT for embedded tools, including the model generator.embed:session:create
GET/public-api/v1/runtime/bootstrapResolves runtime context from an embed JWT.Bearer embed token
POST/public-api/v1/runtime-bindings/sync-from-wordpressCreates or updates runtime bindings from WordPress product mappings.any authenticated credential
PATCH/public-api/v1/runtime-bindings/:idPatches a runtime binding.any authenticated credential
POST/public-api/v1/runtime-bindings/:id/activateActivates a runtime binding.any authenticated credential
POST/public-api/v1/runtime-bindings/:id/deactivateDeactivates a runtime binding.any authenticated credential

Storefront products

Product endpoints return storefront designs that can be embedded as viewer, configurator or customizer experiences.

ParameterRequiredDetails
namenoSearches product/design name.
customizernotrue or false.
offsetnoDefault 0. Must be >= 0.
limitnoDefault 9, maximum 50.
order_bynoid, name or created_at.
directionnoASC or DESC.

Example request (fetch)

const params = new URLSearchParams({
  limit: '20',
  offset: '0',
  name: 't-shirt',
  customizer: 'true',
  order_by: 'created_at',
  direction: 'DESC'
});

const products = await alterFetch(`/products?${params.toString()}`);
const product = await alterFetch('/products/381');

Example response

{
  "products": {
    "items": [
      {
        "id": 381,
        "name": "Men's T-Shirt",
        "createdAt": "2026-01-03T23:55:05.000Z",
        "productId": 4,
        "media": {
          "img": {
            "big": "https://alterproduct.com/public-api/v1/file/public/products/4/big.png",
            "medium": "https://alterproduct.com/public-api/v1/file/public/products/4/medium.png",
            "small": "https://alterproduct.com/public-api/v1/file/public/products/4/small.png"
          },
          "mockups": []
        },
        "storefrontProduct": {
          "id": 89,
          "idUserDesign": 381,
          "shareAccess": "public",
          "isCustomizer": 1
        },
        "runtimeBindings": [
          {
            "id": 42,
            "runtimeType": "customizer",
            "status": "active",
            "externalProductId": "wc_123"
          }
        ],
        "embeddable": {
          "viewer": true,
          "configurator": true,
          "customizer": true
        }
      }
    ],
    "total": 1
  }
}

Runtime bindings

Runtime bindings connect external commerce products to Alter Product designs and runtime types. They are primarily used by WordPress/WooCommerce integrations and advanced storefront backends.

ParameterRequiredDetails
designIdnoAlter Product design ID owned by the storefront.
externalProductIdyes for syncExternal product ID, for example a WooCommerce product ID.
runtimeTypeyes for syncviewer, configurator or customizer.
statusnodraft, active, inactive, archived or legacy_active.
legacyStorefrontProductIdnoOptional legacy mapping ID.
legacyBindingMetanoOptional JSON metadata, for example manifestHash.

Example request (fetch)

await alterFetch('/runtime-bindings/sync-from-wordpress', {
  method: 'POST',
  body: JSON.stringify({
    bindings: [
      {
        externalProductId: 'wc_123',
        runtimeType: 'customizer',
        status: 'active',
        designId: 381,
        legacyBindingMeta: {
          manifestHash: 'a3b1...'
        }
      }
    ]
  })
});

await alterFetch('/runtime-bindings/42', {
  method: 'PATCH',
  body: JSON.stringify({
    status: 'inactive'
  })
});

await alterFetch('/runtime-bindings/42/activate', { method: 'POST' });
await alterFetch('/runtime-bindings/42/deactivate', { method: 'POST' });

wordpress_local

await alterFetch('/runtime-bindings/sync-from-wordpress', {
  method: 'POST',
  body: JSON.stringify({
    bindings: [
      {
        externalProductId: 'wc_123',
        runtimeType: 'viewer',
        status: 'active',
        externalDesign: {
          externalDesignKey: 'wp-design-381',
          productId: 4,
          title: 'WooCommerce local design',
          manifestUrl: 'https://yourstore.com/wp-content/uploads/alter/381/manifest.json',
          assetBaseUrl: 'https://yourstore.com/wp-content/uploads/alter/381/',
          manifestHash: 'a3b1...',
          sourceMeta: {
            pluginVersion: '1.2.0'
          }
        }
      }
    ]
  })
});

Example response

{
  "message": "runtimeBinding.syncCompleted",
  "runtimeBindings": [
    {
      "id": 42,
      "designId": 381,
      "externalProductId": "wc_123",
      "runtimeType": "customizer",
      "status": "active"
    }
  ]
}

Embed sessions and runtime bootstrap

Create a short-lived embed token from your server, pass it to the iframe/runtime, then let the runtime call bootstrap with a Bearer token.

ParameterRequiredDetails
runtimeBindingIdrecommendedPreferred identifier for active runtime bindings.
toolrequired without runtimeBindingIddesigner | viewer | configurator | customizer | model-generator
toolIdtool: model-generatorPositive numeric ID of the local generator project, not its UUID or WooCommerce product ID.
originyesOrigin where the embed is rendered, for example https://yourstore.com.
designIdone identifierAlter Product design ID. Do not combine with orderId.
orderIdone identifierCustomizer order ID. Only valid for customizer.
cartKey + cartModenoCustomizer-only cart context. cartMode is view or edit.

Example request (fetch)

const session = await alterFetch('/embed/session', {
  method: 'POST',
  headers: {
    'x-alter-client-fingerprint': '9f1b7a5e4b3c2d1f9f1b7a5e4b3c2d1f'
  },
  body: JSON.stringify({
    runtimeBindingId: 42,
    origin: 'https://yourstore.com'
  })
});

const bootstrapResponse = await fetch('https://alterproduct.com/public-api/v1/runtime/bootstrap', {
  method: 'GET',
  headers: {
    Authorization: `Bearer ${session.token}`
  }
});

const bootstrap = await bootstrapResponse.json();
console.log({ session, bootstrap });

Notes

await alterFetch('/embed/session', {
  method: 'POST',
  body: JSON.stringify({
    tool: 'customizer',
    origin: 'https://yourstore.com',
    orderId: 123
  })
});

await alterFetch('/embed/session', {
  method: 'POST',
  body: JSON.stringify({
    tool: 'viewer',
    origin: 'https://yourstore.com',
    designId: 381
  })
});

Example response

{
  "token": "eyJhbGciOiJIUzI1NiIsImtpZCI6IjEifQ...",
  "expiresIn": 900,
  "kid": "1",
  "mode": "design",
  "runtimeBindingId": 42,
  "runtimeType": "customizer"
}

Runtime bootstrap

{
  "runtimeBindingId": 42,
  "designId": 381,
  "productId": "wc_123",
  "runtimeType": "customizer",
  "storageMode": "wordpress_local",
  "manifestUrl": "https://yourstore.com/wp-content/uploads/alter/381/manifest.json",
  "assetBaseUrl": "https://yourstore.com/wp-content/uploads/alter/381/",
  "manifestHash": "a3b1...",
  "planCapabilities": {
    "viewer": true,
    "configurator": true,
    "customizer": true
  },
  "cartKey": null,
  "cartMode": null,
  "orderId": null
}