execute_api_request
Send HTTP requests to any API endpoint using specified methods, paths, query parameters, headers, or body data. Ideal for interacting with REST APIs programmatically.
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') |