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

# Verify Access Key

> Verifies if an access key is valid

### Path Parameters

<ParamField path="accessKey" type="string" required>
  The access key to verify
</ParamField>

### Response

<ResponseField name="status" type="boolean">
  `true` if the access key is valid, `false` otherwise
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://config.gms.ensync.cloud/v1/access/verify/ensk_prod_xxxxx" \
    -H "X-API-KEY: your-api-key"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "status": true
  }
  ```
</ResponseExample>
