url_get_after_redirects
Resolve the final URL after all redirects using the ReviewWebsite API. Input a URL to retrieve its destination, ensuring accurate web content analysis and verification.
Instructions
Get URL after redirects using ReviewWeb.site API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | No | Your ReviewWebsite API key | |
url | Yes | URL to get after redirects |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"api_key": {
"description": "Your ReviewWebsite API key",
"type": "string"
},
"url": {
"description": "URL to get after redirects",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}