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

# Retrieve the options for a Solr command



## OpenAPI

````yaml /api-reference/4.2/service-solrAdmin.json options /solrAdmin/{searchClusterId}/{path}
openapi: 3.0.0
info:
  version: 4.2.6-rc1
  title: Fusion Service solrAdmin
servers:
  - url: /api/apollo/
security: []
tags:
  - name: solrAdmin
paths:
  /solrAdmin/{searchClusterId}/{path}:
    options:
      tags:
        - 4.2 Solr Admin API
      summary: Retrieve the options for a Solr command
      operationId: proxyOptionsRequestToSolr
      parameters:
        - name: searchClusterId
          in: path
          description: The Solr search cluster ID
          required: true
          schema:
            type: string
        - name: path
          in: path
          description: The path to the Solr command to run
          required: true
          schema:
            type: string
            pattern: .*
      responses:
        default:
          description: successful operation

````