Set request parameters
Query parameters are key-value pairs added to URLs that help modify what data an API returns. They appear after a question mark in the URL, like ?ticker=IBM&includePrices=true
. Many APIs use parameters to filter results, specify data formats, or control response details.
You can add parameters in two ways: manually type them directly into the URL input field, or use the Parameters tab for easier management and automatic URL formatting.
Before you begin
Make sure you've entered the complete API base URL and endpoint path in the URL input field. For example: https://api.coingecko.com/api/v3/coins/markets
How to manage query parameters
Add a query parameter
On the custom request screen, click the Parameters tab.
Click + Add to create a new parameter.
Enter the parameter name in the left input field and its corresponding value in the right input field.
The parameter will automatically be added to your URL with proper formatting.
Use the + icon next to the value field to insert table values from your Airtable base into the parameter.
Repeat steps 2-5 to add additional parameters as needed.
Remove a query parameter
On the custom request screen, click the Parameters tab.
Find the parameter you want to remove.
Click the - button next to that parameter to delete it.
The parameter will automatically be removed from your URL.
Benefits of using the Parameters tab
Using the Parameters tab instead of manually editing the URL offers several advantages:
Automatic formatting - Data Fetcher handles URL encoding and proper parameter syntax
Easy management - Add, edit, or remove parameters without manually editing the URL string
Dynamic values - Easily insert Airtable table values using the + icon
Error prevention - Reduces mistakes from manual URL construction
Last updated