shorten_url
Create concise short URLs using YOURLS. Input a long URL and optionally add a custom keyword or title for personalized, easy-to-share links.
Instructions
Shorten a long URL using YOURLS
Input Schema
Name | Required | Description | Default |
---|---|---|---|
keyword | No | Optional custom keyword for the short URL | |
title | No | Optional title for the URL | |
url | Yes | The URL to shorten |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"keyword": {
"description": "Optional custom keyword for the short URL",
"type": "string"
},
"title": {
"description": "Optional title for the URL",
"type": "string"
},
"url": {
"description": "The URL to shorten",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}