execute_api_request
Send API requests to specific endpoints using HTTP methods like GET, POST, PUT, and DELETE. Specify paths, query parameters, headers, and request bodies for precise API testing and interaction.
Instructions
Execute an API request to a specific endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | No | Request body as a JSON object (for POST/PUT/PATCH) | |
headers | No | Custom headers as key-value pairs | |
method | Yes | HTTP method (GET, POST, PUT, DELETE, etc.) | |
params | No | Query parameters as key-value pairs | |
path | Yes | The endpoint path (e.g., '/users/123') |