url_is_alive
Verify if a URL is accessible by checking its status using the ReviewWebsite API. Input the URL, set a timeout, and optionally use a proxy to confirm availability.
Instructions
Check if a URL is alive using ReviewWeb.site API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | No | Your ReviewWebsite API key | |
proxyUrl | No | Proxy URL to use for the request | |
timeout | No | Request timeout in milliseconds (default: 10000) | |
url | Yes | URL to check if it's alive |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"api_key": {
"description": "Your ReviewWebsite API key",
"type": "string"
},
"proxyUrl": {
"description": "Proxy URL to use for the request",
"type": "string"
},
"timeout": {
"description": "Request timeout in milliseconds (default: 10000)",
"type": "number"
},
"url": {
"description": "URL to check if it's alive",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}