I am working on a personal project where the end goal would be:
Users type in their favourite artist name and the response will display stats based on the available Spotify public data.
I am planning to use Make, Airtable, and Public API connections ( I know nothing about APIs so this will be a learning curve and a fun project at the same time)
I realized that at the moment I do not have an airtable base built with a list of artists and even if I did the list would be way too long to maintain
So as first step I decided to set up a simple google form where the user types in their artist’s name, and from there I I’d make a HTTP request to Spotify’s API
So based on Gemini AI recommendation I should use a jSON parser to retrieve the answer from the google form and use that value to point to spotify’s API when searching for said artist
The problem is I’m unsure of how to set up the HTTP request so that each time an answer is given it will search based on that value (artist name)
You don’t need that Parse JSON module because Google Forms already takes care of it for you.
You simply need to expand “Enter your fav artist” then map the answer as the input in your HTTP module.
In your HTTP module, you need to enter the URL for the Spotify endpoint you’ll be using. However, Make has a built-in module for Spotify so you could probably use that assuming the URL is correct. If you can’t find the function you will be using then use “Make an arbitrary API call” instead.
The way you have Query set up now in the Spotify module is you’re giving it an entire array which probably isn’t what you want.
Instead, expand Answers → Enter your fav artist → etc… and keep expanding until you see the text containing the actual answer then drag that into the Query field.
Funnily enough even though I selected the value from the answer it didn’t work, however I realized I may potentially do everything with just spotify modules so will close this ticket for now and be back with any updates