MARKETPLACE
PLUGINS
DYNAMIC API BY RITZ7
Dynamic API by Ritz7 logo

Dynamic API by Ritz7

Published February 2023
   β€’    Updated June 2025

Plugin details

Dynamic API is a plugin that allows you to easily make API calls dynamically within your application. It provides a simple and flexible interface for making requests to various APIs and handling the response data.
With this plugin, you can dynamically make API calls based on user input or other conditions, making it ideal for creating dynamic, data-driven applications. Whether you're working with public APIs or your own custom APIs.

πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ† Plugins by Ritz7 πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†

Stay up-to-date with our latest updates and new plugin releases by registering at: https://bubble.ritz7.com/registration

Video Tutorial Link: https://bubble.ritz7.com/DynamicAPI_YT

Want a new feature?
You can share via email at [email protected] or add it here: https://bubble.ritz7.com/DynamicAPI_FR

Found a bug?
You can share via email at [email protected] or report here: https://bubble.ritz7.com/DynamicAPI_Feedback

Want a one-on-one support?
Schedule a paid call: https://bubble.ritz7.com/schedule

Interested in a 250+ hours detailed course?
https://bubble.ritz7.com/NoCodeSchool

πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†

β–Ί Dynamic API key features

βœ” Create a GET API request

βœ” Create a POST API request

βœ” Create a PUT API request

βœ” Create a PATCH API request

βœ” Create a DELETE API request

$8

One time  β€’  Or  $2/mo

3.0 stars   β€’   1 ratings
20 installs  
This plugin does not collect or track your personal data.

Platform

Web & Native mobile

Contributor details

Ritz7 Automations logo
Ritz7 Automations
Joined 2021   β€’   30 Plugins
View contributor profile

Instructions

πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†Set-UpπŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†
We have detailed video tutorials for each of the actions/elements we have in this plugin. Watch them to understand and use it at ease.


πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†Installing the PluginπŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†


βœ” Log in to your Bubble account
βœ” Go to Plugins
βœ” Search for β€œDynamic API by Ritz7”
βœ” Install the plugin


πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†Using the PluginπŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†πŸŸ†


πŸŸ†πŸŸ† Actions πŸŸ†πŸŸ†

➽ Create a GET API request

βœ” Inputs:
 βž» API endpoint: It should be the request URL. In terms of GET request, the URL should fetch response.
 βž» Method: It is the method of the request. In this case, the value should be "GET".
 βž» Headers: It should contain all the headers of an API request. For ex - Authorization token, Content-type etc.
 βž» Body: It is the payload of an API request. You can leave it empty for GET request or if not required.

βœ” Outputs:
 βž» Data from the API request.

➸ Watch the video for the above action here: https://www.youtube.com/watch?v=HUhhGdSFlRI


➽ Create a POST API request

βœ” Inputs:
 βž» API endpoint: It should be the request URL. In terms of POST request, the URL should insert data.
 βž» Method: It is the method of the request. In this case, the value should be "POST".
 βž» Headers: It should contain all the headers of an API request. For ex - Authorization token, Content-type etc.
 βž» Body: It is the payload of an API request. You can leave it empty if not required.

βœ” Outputs:
 βž» Inserted Data from the API request.

➸ Watch the video for the above action here: https://www.youtube.com/watch?v=HUhhGdSFlRI


➽ Create a PUT/PATCH API request

βœ” Inputs:
 βž» API endpoint: It should be the request URL. In terms of PUT/PATCH request, the URL should update the response.
 βž» Method: It is the method of the request. In this case, the value should be "PUT/PATCH".
 βž» Headers: It should contain all the headers of an API request. For ex - Authorization token, Content-type etc.
 βž» Body: It is the payload of an API request. You can leave it empty if not required.

βœ” Outputs:
 βž» Updated data from the API request.

➸ Watch the video for the above action here: https://www.youtube.com/watch?v=HUhhGdSFlRI


➽ Create a DELETE API request

βœ” Inputs:
 βž» API endpoint: It should be the request URL. In terms of DELETE request, the URL should delete the data.
 βž» Method: It is the method of the request. In this case, the value should be "DELETE".
 βž» Headers: It should contain all the headers of an API request. For ex - Authorization token, Content-type etc.
 βž» Body: It is the payload of an API request. You can leave it empty if not required.

βœ” Outputs:
 βž» Response from the API request or Empty response.

➸ Watch the video for the above action here: https://www.youtube.com/watch?v=HUhhGdSFlRI


Types

This plugin can be found under the following types:

Categories

This plugin can be found under the following categories:
Technical   β€’   Data (things)

Resources

Support contact
Documentation
Tutorial

Rating and reviews

Average rating (3.0)

Body as JSON
October 3rd, 2023
I think the body should be JSON by default since every call has that as default is there a way to have is read JSON formatting? right now is "key": "value" concept
Thanks for trying the plugin out. We would like to know if anything that was mentioned in the plugin description wasn't functioning well? If so, please let us know. We will be more than happy to fix them first. (plugin author)
October 2nd, 2023
  β€’  
Ritz7 Automations
Bubble