Hi, I’ve been using Moralis to query both transactions and balances data for a while now and recently stumbled across an issue. When I try to query data using the following parameters:
URL: https://deep-index.moralis.io/api/v2/0x777Ad55EFc465052d6A4AB7bc75B6A15175bB399
Chain: polygon
Offset: 12000
Limit: 500
I end up getting status code of 500 and with no reason, it just says internal server error. I have included a test file in python below so you can try run it to see it happening (you have to add your own API_KEY). Does anyone know what I can do as I’d like to continue extracting data for this address.
import requests
address = '0x777Ad55EFc465052d6A4AB7bc75B6A15175bB399'
headers = {
'accept': 'application/json',
'X-API-Key': 'API_KEY',
}
params = (
('chain', 'polygon'),
('offset', '12000'),
('limit', '500'),
)
response = requests.get(f'https://deep-index.moralis.io/api/v2/{address}',
headers=headers,
params=params)
print(f'Status code: {response.status_code}\n'
f'Reason: {response.reason}')
Thanks in advance,
Daniel