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

# Upload Text

> Upload text to be processed and indexed for semantic search

<Warning>This route is temporarily unavailable</Warning>


## OpenAPI

````yaml POST /upload/text
openapi: 3.1.0
info:
  title: LiquidIndex API
  description: >-
    LiquidIndex API provides semantic search and document processing
    capabilities. The API enables users to upload documents and perform semantic
    queries across their content.
  version: 1.0.0
servers:
  - url: https://api.liquidindex.dev/
security:
  - bearerAuth: []
paths:
  /upload/text:
    post:
      summary: Upload text
      description: Upload text to be processed and indexed for semantic search
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - owner_id
                - text
              properties:
                owner_id:
                  type: string
                  description: The project/customer ID to associate the text with
                text:
                  type: string
                  description: The text to be uploaded and processed
      responses:
        '200':
          description: Successful query response
          content:
            application/json:
              schema:
                type: object
                required:
                  - job_id
                  - status
                properties:
                  job_id:
                    type: string
                    example: '1234567890'
                    description: The Job ID belonging to the text upload
                  status:
                    type: string
                    example: PENDING
                    description: The status of the text upload
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: Error message describing what went wrong
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````