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

# Render the build-a-box storefront page



## OpenAPI

````yaml /bundles/storefront-api-swagger.json get /bundles/bb/{token}
openapi: 3.0.1
info:
  description: ''
  title: Storefront APIs
  version: 0.0.1
servers:
  - url: https://bundles-admin.appstle.com
security: []
tags:
  - description: Fetch build-a-box configuration and generate bundle discounts.
    name: Build-a-Box
  - description: Storefront-facing Bundles widget and visitor activity endpoints.
    name: Storefront
  - description: >-
      Storefront product and collection data, proxied through the Shopify
      Storefront API for build-a-box and bundle widgets.
    name: Product Catalog
paths:
  /bundles/bb/{token}:
    get:
      tags:
        - Storefront
      summary: Render the build-a-box storefront page
      operationId: getBuildABox
      parameters:
        - in: path
          name: token
          required: true
          schema:
            type: string
        - in: query
          name: renderType
          required: false
          schema:
            default: liquid
            type: string
        - in: query
          name: inlineScript
          required: false
          schema:
            default: false
            type: boolean
      responses:
        '200':
          content:
            application/json:
              schema:
                type: string
            application/liquid:
              schema:
                type: string
            text/html:
              schema:
                type: string
          description: OK

````