I want to get data from this site:
https://www.techstars.com/portfolio?category=all%20companies
As you see in the network tab, a get request is sent to this link:
https://datacore.techstars.com/companies?order=name&program_status=in.(session_in_progress,session_over)}&type=eq.Graduate&session=not.in.(%22%22)&offset=0&limit=50
but when I open it it says "permission denied..." and same when I send a get requests in Python.
How can I send a get requests to this link with correct data?
Here is me code.
import requests
url = 'https://datacore.techstars.com/companies?order=name&program_status=in.(session_in_progress,session_over)}&type=eq.Graduate&session=not.in.(%22%22)&offset=0&limit=50'
payload = {'order':'name','program_status':'in.(session_in_progress,session_over)}', 'type':'eq.Graduate','session':'not.in.(%22%22)','offset':'0','limit':'50'}
r = requests.get(url, data=payload)
r.content
and it give me this result
b'{"hint":null,"details":null,"code":"42501","message":"permission denied for table companies"}'