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

# Get the current vertical (public)

> Returns the single configured vertical. When no vertical has been created yet, a default fallback (`{ name: "TetherAI" }`) is returned with 200 so frontends can render branding before initial setup.



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/vertical
openapi: 3.0.3
info:
  title: Tether Relay and Tether API
  version: 1.0.0
  description: >-
    Route-derived OpenAPI contract generated from tether-relay backend sources.
    Regenerate with scripts/sync-openapi-from-backend.mjs.
servers:
  - url: https://your-instance.example.com
    description: Production
  - url: http://localhost:2212
    description: Local API service
security: []
tags:
  - name: AI
  - name: Applications
  - name: Approval
  - name: Auth
  - name: Automations
  - name: Calls
  - name: Campaigns
  - name: Contact Analytics
  - name: Contact Metrics
  - name: Contact Notes
  - name: Contacts
  - name: Conversation Monitor
  - name: Conversations
  - name: Departments
  - name: Email
  - name: Escalation Dashboard
  - name: Event Logs
  - name: Google Sheets
  - name: Marketplace
  - name: Messages
  - name: Notification Sounds
  - name: Notifications
  - name: Org Snapshots
  - name: Organizations
  - name: Outreach
  - name: Outreach Metrics
  - name: Outreach Sources
  - name: Pipelines
  - name: Processes
  - name: Prompts
  - name: Reminders
  - name: Sms
  - name: Templates
  - name: Traces
  - name: Training
  - name: Upload
  - name: User Snapshots
  - name: Users
  - name: Vertical
  - name: Webchats
  - name: Webhook
paths:
  /api/vertical:
    get:
      tags:
        - Vertical
      summary: Get the current vertical (public)
      description: >-
        Returns the single configured vertical. When no vertical has been
        created yet, a default fallback (`{ name: "TetherAI" }`) is returned
        with 200 so frontends can render branding before initial setup.
      operationId: get_vertical
      responses:
        '200':
          description: Vertical returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VerticalGetResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VerticalErrorResponse'
components:
  schemas:
    VerticalGetResponse:
      type: object
      description: Response from `GET /api/vertical`.
      properties:
        vertical:
          $ref: '#/components/schemas/VerticalDto'
      required:
        - vertical
      additionalProperties: true
      example:
        vertical:
          _id: 65b1f0a2c3d4e5f6a7b8c9d0
          name: TetherAI
          createdAt: '2026-01-12T09:15:00.000Z'
          updatedAt: '2026-04-04T17:42:00.000Z'
    VerticalErrorResponse:
      type: object
      description: Error envelope returned by vertical endpoints.
      properties:
        message:
          type: string
        error:
          type: string
      required:
        - message
      additionalProperties: true
      example:
        message: Vertical already exists
        error: CONFLICT
    VerticalDto:
      type: object
      description: >-
        The single vertical configured for this deployment. On the fallback path
        (no record exists yet) only `name` is populated.
      properties:
        _id:
          type: string
        name:
          type: string
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      required:
        - name
      additionalProperties: true
      example:
        _id: 65b1f0a2c3d4e5f6a7b8c9d0
        name: TetherAI
        createdAt: '2026-01-12T09:15:00.000Z'
        updatedAt: '2026-04-04T17:42:00.000Z'

````