search_endpoints
Search API endpoint paths and descriptions using a specific pattern to quickly locate relevant endpoints in a Swagger/OpenAPI specification.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiId | Yes | ID of the loaded API | |
pattern | Yes | Search pattern for endpoint paths or descriptions |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"apiId": {
"description": "ID of the loaded API",
"type": "string"
},
"pattern": {
"description": "Search pattern for endpoint paths or descriptions",
"type": "string"
}
},
"required": [
"apiId",
"pattern"
],
"type": "object"
}