Skip to main content

RestAPI

Prophecy Automate

Use the RestAPI gem to make API calls from your pipeline.

Use cases

While RestAPIs vary greatly in functionality, we can highlight a few use cases that may be particularly helpful for your pipelines.

Use caseExample
Bringing in more data from external systemsRetrieve active users from an internal user database.
Enriching data with specific APIsSend data to LLMs to analyze text and return the sentiments of a column.
Sending notifications or alertsSend real-time messages to a Slack channel when an event occurs in your pipeline.

Parameters

ParameterDescription
URLThe endpoint of the API that you are making a request to.
MethodThe HTTP method used for the request (e.g., GET, POST, PUT, DELETE) to determine the action performed on the resource.
ParamsQuery parameters included in the request URL, usually used for filtering, sorting, or pagination (e.g., page=2&limit=10).
BodyThe payload sent with POST, PUT, or PATCH requests, typically in JSON format, containing the data to be processed by the API.

You can populate these parameters with hard-coded values or reference columns. If you use a column to dynamically populate the RestAPI, Prophecy will generate one API call per row in that column. For example, if you reference a column with 100 rows, this gem will make 100 API calls.