I got a problem:
curl https://core-api.prod.blur.io/v1/prices -H "User-Agent: randomtext" - Status code: 200
response = httpx.request('GET', 'https://core-api.prod.blur.io/v1/prices', headers={
'Host': 'core-api.prod.blur.io',
'Accept': '*/*',
'Accept-Encoding': 'gzip, deflate',
'Connection': 'close',
'User-Agent': 'useragent'
}, verify=False, proxies={"all://": "http://127.0.0.1:8080"}) - 200 (BurpSuite)
response = httpx.request('GET', 'https://core-api.prod.blur.io/v1/prices', headers={
'Host': 'core-api.prod.blur.io',
'Accept': '*/*',
'Accept-Encoding': 'gzip, deflate',
'Connection': 'close',
'User-Agent': 'useragent'
}, verify=False) - 403
How can I fix this?
Code or any answer