0
In the code below I’m making a request to the Marvel api.
const api = axios.create({
baseURL: `https://gateway.marvel.com:443/v1/public`,
version: 'Cable',
});
`api.get(`/characters?ts=${ts}&apikey=${publicKey}&hash=${md5(`${ts}${privateKey}${publicKey}`)}`, {
params: {
limit: 20,
},`
I wonder if there’s a way to go through the url, or even the params, a filter that returns all the characters that start with the letter A, for example.
already consulted the documentation of the API? if you have this possibility will be there
– Ricardo Pontual