Add Web API Header in blocks

Are there any plans to add a web api header block component or is there a workaround?

1 Like

Hi there,

At the moment you can only edit the Web API Header in the Properties of the Web API component.

We know that this is a feature users want and we have plans to implement it!

What kind of change do you want to make to your Web API Header during your app’s run time?

Thanks,
Jane

For some of the APIs that I’m trying to implement, the user gets a better and safer experience when they use their own authentication details particularly for the payment and shipping APIs

Do you have an ballpark idea of the release timeline for this feature? thanks

Hello!
Please, is it possible to connect my app in Thunkable with this API Below?
Sorry for the basic question…

import requests

url = “https://www.cepaberto.com/api/v3/cep?cep=01001000

O seu token está visível apenas pra você

headers = {‘Authorization’: ‘Token token=1c9ae162e26cd9592’}
response = requests.get(url, headers=headers)

print(response.json())

The result is:
{“cidade”: {“ibge”: “3550308”, “nome”: “São Paulo”, “ddd”: 11}, “estado”: {“sigla”: “SP”}, “altitude”: 760.0, “longitude”: “-46.636”, “bairro”: “Sé”, “complemento”: “- lado ímpar”, “cep”: “01001000”, “logradouro”: “Praça da Sé”, “latitude”: “-23.5479099981”}