get_url_info
Retrieve detailed information about short URLs including original destination, click statistics, and creation date using the unique short URL ID.
Instructions
根据短网址ID获取详细信息,包括原始URL、点击统计、创建时间等。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | 短网址的唯一标识ID |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "短网址的唯一标识ID",
"examples": [
1,
123,
456
],
"minimum": 1,
"type": "integer"
}
},
"required": [
"id"
],
"type": "object"
}