get_endpoint_details
Retrieve detailed information about a specific API endpoint, including its HTTP method and path, to understand its functionality and structure within a loaded API specification.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiId | Yes | ID of the loaded API | |
method | Yes | HTTP method (GET, POST, etc.) | |
natural | No | If true, returns a human-readable summary | |
path | Yes | API endpoint path |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"apiId": {
"description": "ID of the loaded API",
"type": "string"
},
"method": {
"description": "HTTP method (GET, POST, etc.)",
"type": "string"
},
"natural": {
"description": "If true, returns a human-readable summary",
"type": "boolean"
},
"path": {
"description": "API endpoint path",
"type": "string"
}
},
"required": [
"apiId",
"method",
"path"
],
"type": "object"
}