api_get_endpoint_info
Retrieve detailed information about specific API endpoints from Swagger 2.0 specifications to understand parameters, responses, and HTTP methods.
Instructions
获取示例API API特定端点的详细信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
method | Yes | HTTP方法 | |
path | Yes | API路径 |
Input Schema (JSON Schema)
{
"properties": {
"method": {
"description": "HTTP方法",
"enum": [
"GET",
"POST",
"PUT",
"DELETE",
"PATCH",
"HEAD",
"OPTIONS"
],
"type": "string"
},
"path": {
"description": "API路径",
"type": "string"
}
},
"required": [
"method",
"path"
],
"type": "object"
}