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

# Export code storefront source as a ZIP archive

> Developer API operation for GET /dev/v1/code-storefronts/{id}/source/archive.



## OpenAPI

````yaml /openapi.json get /dev/v1/code-storefronts/{id}/source/archive
openapi: 3.0.3
info:
  title: Shoppex Developer API
  description: Mintlify-compatible Developer API reference for Shoppex.
  version: 1.0.0
  contact:
    name: Shoppex Support
    email: support@shoppex.io
    url: https://shoppex.io
servers:
  - url: https://api.shoppex.io
security:
  - bearerAuth: []
paths:
  /dev/v1/code-storefronts/{id}/source/archive:
    get:
      tags:
        - Code Storefronts
      summary: Export code storefront source as a ZIP archive
      description: >-
        Developer API operation for GET
        /dev/v1/code-storefronts/{id}/source/archive.
      operationId: getDevV1Code-storefrontsByIdSourceArchive
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: ZIP archive of the current source revision
          content:
            application/zip:
              schema:
                type: string
                format: binary
      deprecated: false
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: Use your Shoppex API key in the Authorization header.

````