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

# HEAD simulation

> ### Check Status

This endpoint sends an HTTP HEAD request to the specified URL to check the status of the resource. The `:statusCode` parameter in the URL should be replaced with the actual status code to be checked.

**Request Body**  
This request does not require a request body.

**Response Body**  
The response will not contain a body, as the HTTP HEAD method is used to retrieve the headers and status of the resource without receiving the actual content.



## OpenAPI

````yaml api_references/openapi.json head /v1/status/{statusCode}
openapi: 3.0.3
info:
  title: Mock Data Generation API
  description: API for generating mock data with specific types and repetition
  version: 1.0.0
  contact:
    name: MockWise
    url: https://mockwise.dev
servers:
  - url: https://mockwise.dev/api
    description: Production server
security:
  - bearerAuth: []
tags:
  - name: Mock Generation
    description: Endpoints for generating mock data
  - name: Status Codes
    description: Endpoints simulating HTTP status codes
paths:
  /v1/status/{statusCode}:
    head:
      tags:
        - Status Codes
      summary: HEAD simulation
      description: >-
        ### Check Status


        This endpoint sends an HTTP HEAD request to the specified URL to check
        the status of the resource. The `:statusCode` parameter in the URL
        should be replaced with the actual status code to be checked.


        **Request Body**  

        This request does not require a request body.


        **Response Body**  

        The response will not contain a body, as the HTTP HEAD method is used to
        retrieve the headers and status of the resource without receiving the
        actual content.
      parameters:
        - name: statusCode
          in: path
          description: ''
          required: true
          example: '200'
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
          headers: {}
      deprecated: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````