list_urls
Retrieve and manage a list of URLs with options to sort by clicks or timestamps, filter by search terms, and paginate results for streamlined URL analysis and organization.
Instructions
Get a list of URLs with sorting, pagination, and filtering options
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | Page number | |
perpage | No | Number of results per page | |
search | No | Search term to filter results | |
sortby | No | Field to sort by (e.g., "clicks", "timestamp") | |
sortorder | No | Sort order ("asc" or "desc") |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"description": "Page number",
"type": "number"
},
"perpage": {
"description": "Number of results per page",
"type": "number"
},
"search": {
"description": "Search term to filter results",
"type": "string"
},
"sortby": {
"description": "Field to sort by (e.g., \"clicks\", \"timestamp\")",
"type": "string"
},
"sortorder": {
"description": "Sort order (\"asc\" or \"desc\")",
"type": "string"
}
},
"type": "object"
}