execute_api_request
Send API requests to specific endpoints using HTTP methods, paths, query parameters, headers, and request bodies for REST API interactions.
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') |