> ## 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.

# Issue an HTTP HEAD request to the specified Solr cluster



## OpenAPI

````yaml /api-reference/4.2/service-solrAdmin.json head /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}:
    head:
      tags:
        - 4.2 Solr Admin API
      summary: Issue an HTTP HEAD request to the specified Solr cluster
      operationId: proxyHeadRequestToSolr
      parameters:
        - name: searchClusterId
          in: path
          description: The Solr search cluster ID
          required: true
          schema:
            type: string
        - name: path
          in: path
          description: The path for the HTTP request
          required: true
          schema:
            type: string
            pattern: .*
      responses:
        default:
          description: successful operation

````