> ## 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.

# Proxy a Shopify Storefront GraphQL request from the customer portal



## OpenAPI

````yaml /bundles/storefront-api-swagger.json post /bundles/cp/api/storefront-graphql
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/cp/api/storefront-graphql:
    post:
      tags:
        - Product Catalog
      summary: Proxy a Shopify Storefront GraphQL request from the customer portal
      operationId: proxyCp
      requestBody:
        content:
          application/json:
            schema:
              additionalProperties:
                type: object
              type: object
        required: true
      responses:
        '200':
          content:
            '*/*':
              schema:
                type: string
          description: OK

````