contract_url
Verify if a URL is already shortened in the YOURLS database to avoid duplicate entries, ensuring efficient URL management.
Instructions
Check if a URL has already been shortened without creating a new short URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | The URL to check if it exists in the database |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"url": {
"description": "The URL to check if it exists in the database",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}