shorten
Simplify lengthy URLs for easy sharing by transforming them into concise links using the CleanURI API. Ideal for integration into agent or tool-based systems.
Instructions
Shorten a URL using the cleanuri API.
Args:
original_url: The URL to shorten.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
original_url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"original_url": {
"title": "Original Url",
"type": "string"
}
},
"required": [
"original_url"
],
"title": "shortenArguments",
"type": "object"
}