api_list_endpoints
Lists all available endpoints from Swagger API specifications, with filtering by HTTP method or keywords to help developers explore and understand API capabilities.
Instructions
列出示例API API的所有可用端点
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filter | No | 过滤端点的关键词(可选) | |
method | No | 按HTTP方法过滤(可选) |
Input Schema (JSON Schema)
{
"properties": {
"filter": {
"description": "过滤端点的关键词(可选)",
"type": "string"
},
"method": {
"description": "按HTTP方法过滤(可选)",
"enum": [
"GET",
"POST",
"PUT",
"DELETE",
"PATCH",
"HEAD",
"OPTIONS"
],
"type": "string"
}
},
"type": "object"
}