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

# Get a conversation upload

> Retrieve a conversation upload by its ID



## OpenAPI

````yaml /rulebase_api_openapi.yaml get /conversations/upload/{id}
openapi: 3.0.1
info:
  title: Rulebase API
  version: 1.0.0
  description: Rulebase API
servers:
  - url: https://api.rulebase.co
security: []
paths:
  /conversations/upload/{id}:
    get:
      tags:
        - Conversations
      summary: Get a conversation upload
      description: Retrieve a conversation upload by its ID
      operationId: getConversationUpload
      parameters:
        - name: id
          in: path
          required: true
          description: The ID of the conversation upload to retrieve
          schema:
            type: string
      responses:
        '200':
          description: Conversation upload found
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/conversation_upload'
                required:
                  - data
      security:
        - bearer_auth: []
components:
  schemas:
    conversation_upload:
      type: object
      properties:
        id:
          type: string
        status:
          type: string
          enum:
            - pending
            - processing
            - completed
            - failed
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
      required:
        - id
        - status
        - created_at
        - updated_at
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      description: API key authentication using Bearer Token

````