The API node allows you to make HTTP requests to external API endpoints.

image.png

URL Input

This is the URL of the API endpoint you want to make a request to. If your API endpoint uses a url with query parameters, see this guide for developing a tool for parametrically working with query parameters in the API node.

Method Input

The HTTP method to request on the required resource. This can be GET, POST, PUT, PATCH, DELETE.

Header Input

The headers to send with the request. These typically include authorization credentials and content type specifications. Never enter API keys as text in the API header as these can be exposed to anyone with access to your Runchat. Instead, always use the Credentials menu to securely add API keys and credentials to your requests.

Body Input

The request body. This can be a string or JSON object. The exact content of the request body will typically depend on the schema of the API endpoint you are making a request to. Be sure to read the API documentation to understand how to format content in the request body.

Making requests with the API Node

To make a request with the API node you will typically need to:

It is usually a good idea to make your first request using example data provided by most API documentation. Once this is working, substitute your own data.

If API documentation provides example cURL commands, you can automatically format these for the API node using Prompt formats or tools.