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

# API Key Check

> Verify if your API key is valid

Use this endpoint to verify if your API key is valid and working correctly.

<RequestExample>
  ```bash theme={null}
  curl --request GET \
    --url 'http://localhost:2003/api/v1/check' \
    --header 'x-api-key: <your-api-key>'
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": "ok"
  }
  ```
</ResponseExample>


## OpenAPI

````yaml GET /check
openapi: 3.1.0
info:
  title: Browserable API
  description: API for managing automated browser tasks
  version: 1.0.0
servers:
  - url: https://api.browserable.ai/api/v1/
    description: API Server
security:
  - apiKey: []
paths:
  /check:
    get:
      summary: API Key Check
      description: Verify if your API key is valid
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: string
                    example: ok
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-api-key
      in: header

````