Send and receive data from external APIs using HTTP requests in your chatbot agent. Learn how to configure HTTP requests, handle responses, and display dynamic content in your agent dialogs.
GET
request to retrieve movie details from the OMDB API based on a movie title provided by the user.
Movie
{{Movie}}
with the variable containing the user input:
GET
Movie
Indiana Jones
API Response Key | Variable Name |
---|---|
data.Title | Title |
data.Year | Year |
data.Poster | Poster |
data.Title
Title
data.Year
Year
data.Poster
Poster
{{Poster}}
.https://hook.eu1.make.com/...
).Movie
variable captures user input correctly.Title
, Year
, Poster
) are saved and mapped without errors.Note: Always secure your API key. Avoid exposing it in client-side environments.
Tip: Use fallback messages for cases where the movie is not found or the API request fails.
http://www.omdbapi.com/?t=Shawshank%20Redemption&apikey=YOUR_API_KEY
.
Title
: “The Shawshank Redemption”Year
: “1994”Poster
: URL to movie poster