list_short_urls
Retrieve and filter your short URL collection with pagination, domain filtering, and keyword search to manage and organize your links effectively.
Instructions
列出用户的短网址列表,支持分页、域名筛选和关键词搜索。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | No | 按域名筛选(可选) | |
keyword | No | 搜索关键词,搜索URL、标题或描述(可选) | |
page | No | 页码,从1开始 | |
page_size | No | 每页数量,最大100,默认10 |
Input Schema (JSON Schema)
{
"properties": {
"domain": {
"description": "按域名筛选(可选)",
"examples": [
"short.ly"
],
"pattern": "^[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$",
"type": "string"
},
"keyword": {
"description": "搜索关键词,搜索URL、标题或描述(可选)",
"examples": [
"产品",
"活动",
"github.com"
],
"maxLength": 100,
"type": "string"
},
"page": {
"default": 1,
"description": "页码,从1开始",
"examples": [
1,
2,
3
],
"minimum": 1,
"type": "integer"
},
"page_size": {
"default": 10,
"description": "每页数量,最大100,默认10",
"examples": [
10,
20,
50
],
"maximum": 100,
"minimum": 1,
"type": "integer"
}
},
"required": [],
"type": "object"
}