list_endpoints
Discover and filter API endpoints by folder or HTTP method to manage your API catalog and streamline development workflows.
Instructions
List all endpoints with optional filtering by folder
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| folder_id | No | Optional folder ID to filter endpoints | |
| method | No | Optional HTTP method filter |
Input Schema (JSON Schema)
{
"properties": {
"folder_id": {
"description": "Optional folder ID to filter endpoints",
"type": "string"
},
"method": {
"description": "Optional HTTP method filter",
"enum": [
"GET",
"POST",
"PUT",
"PATCH",
"DELETE",
"HEAD",
"OPTIONS"
],
"type": "string"
}
},
"type": "object"
}