List Endpoints
list_endpointsList all endpoints of an API specification. Optionally filter by version. Set scope to 'project' to look across every spec in the project instead — that returns the groups of endpoints colliding on method and path (gateway routing conflicts) plus counts, not the full list, and specId is then ignored. Use this to browse endpoints or find an endpoint id; for one endpoint in full use get_endpoint. Requires project context (call set_context first).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| skip | No | Number of endpoints to skip (for pagination, default 0) | |
| take | No | Number of endpoints to return (default 50, max 100) | |
| scope | No | What to look at: 'spec' (default) or 'project' | spec |
| specId | Yes | Public ID (GUID) of the API specification | |
| versionId | No | Optional version ID (GUID) to filter endpoints by a specific version |