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

# Get basic service information

> Returns a plain text welcome message with the service name and creation date.



## OpenAPI

````yaml api-reference/zip.yaml get /
openapi: 3.0.3
info:
  title: zip
  description: >-
    The Zip Service handles requests to bundle multiple files from cloud storage
    into a single compressed archive. It efficiently retrieves the requested
    objects, packages them into a ZIP file, and streams the result directly back
    to the requester.
  version: 1.0.0
servers:
  - url: https://zip.platform.arb.inc
security: []
tags:
  - name: /
  - name: archives
paths:
  /:
    get:
      tags:
        - /
      summary: Get basic service information
      description: >-
        Returns a plain text welcome message with the service name and creation
        date.
      operationId: getRoot
      responses:
        '200':
          description: Successfully retrieved welcome message.
          content:
            text/plain:
              schema:
                type: string
                example: >-
                  Welcome to the zip service. Created on November 10, 2025 by Al
                  Beebe

````