api_probe
Probe API endpoints by sending multiple HTTP methods, analyzing response status, content type, and CORS configuration. Supports custom headers and body for security testing and endpoint discovery.
Instructions
API 端点探测工具。向目标 URL 发送多种 HTTP 方法(GET/POST/PUT/DELETE/PATCH/OPTIONS),分析响应状态、内容类型、CORS 配置。支持自定义请求头和请求体,适合 API 安全测试和端点发现。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | 目标 API URL(必填) | |
| body | No | 请求体(POST/PUT/PATCH 方法使用) | |
| headers | No | 自定义请求头,如 {"Authorization": "Bearer token", "Content-Type": "application/json"} | |
| methods | No | 要测试的 HTTP 方法列表,默认 ['GET', 'POST', 'PUT', 'DELETE', 'PATCH', 'OPTIONS'] | |
| checkCors | No | 是否分析 CORS 配置,默认 true |