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

# Browse



## OpenAPI

````yaml POST /browse
openapi: 3.0.1
info:
  title: Stelis API
  description: API for Stelis's browser automation and information retrieval services
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.stelis.app/v1
security:
  - bearerAuth: []
paths:
  /browse:
    post:
      tags:
        - Autonomous API
      summary: Automate a series of actions on a website
      operationId: browseTasks
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BrowseRequest'
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrowseResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '429':
          $ref: '#/components/responses/TooManyRequests'
components:
  schemas:
    BrowseRequest:
      type: object
      required:
        - prompt
        - url
      properties:
        prompt:
          type: string
          description: Natural language description of the task to perform
        url:
          type: string
          description: Starting URL for the automation task
        maxSteps:
          type: integer
          description: Maximum number of steps to perform
    BrowseResponse:
      type: object
      properties:
        status:
          type: string
          enum:
            - success
        result:
          type: object
          properties:
            finalUrl:
              type: string
            actions:
              type: array
              items:
                type: object
            screenshot:
              type: string
              format: base64
  responses:
    BadRequest:
      description: Invalid request
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
    TooManyRequests:
      description: Too many requests
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````