check-status
Verify URL accessibility by sending a HEAD request to check its status. Configure timeout settings to manage response delays and ensure the URL is reachable.
Instructions
Check if a URL is accessible (HEAD request)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
timeout | No | Request timeout in milliseconds | |
url | Yes | URL to check |
Input Schema (JSON Schema)
{
"properties": {
"timeout": {
"description": "Request timeout in milliseconds",
"type": "number"
},
"url": {
"description": "URL to check",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}