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

# List Available Algorithms

> Get available molecular simulation algorithms for your organization.

Returns a comprehensive list of algorithms that your organization has access to,
including version information, resource limits, and configuration details.

**Algorithm Types:**
- **Boltz**: Fast protein structure prediction
- **RF-Diffusion**: Protein design and generation
- **AlphaFold**: High-accuracy structure prediction
- **ProteinMPNN**: Protein sequence design

**Response includes:**
- Algorithm name and version
- Resource limits and concurrency settings
- Configuration requirements
- Current availability status

Use this endpoint to discover which algorithms are available before submitting jobs.



## OpenAPI

````yaml openapi.json get /algorithms
openapi: 3.1.0
info:
  title: Nano Helix API
  description: Protein AI model API platform.
  contact:
    name: Nano Helix Support
    email: support@nanohelix.ai
  license:
    name: Commercial License
  version: 1.0.0
servers: []
security: []
paths:
  /algorithms:
    get:
      tags:
        - Discovery
      summary: List Available Algorithms
      description: >-
        Get available molecular simulation algorithms for your organization.


        Returns a comprehensive list of algorithms that your organization has
        access to,

        including version information, resource limits, and configuration
        details.


        **Algorithm Types:**

        - **Boltz**: Fast protein structure prediction

        - **RF-Diffusion**: Protein design and generation

        - **AlphaFold**: High-accuracy structure prediction

        - **ProteinMPNN**: Protein sequence design


        **Response includes:**

        - Algorithm name and version

        - Resource limits and concurrency settings

        - Configuration requirements

        - Current availability status


        Use this endpoint to discover which algorithms are available before
        submitting jobs.
      operationId: get_algorithms_algorithms_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````