LIMIT = 250
current = 0
has_more = True
while has_more:
res = request.get(f'https://api.hubapi.com/deals/v1/deal/paged?limit={LIMIT}&...&offset={current}')
# .... обработка данных .....
current += LIMIT
has_more = res.json().get('hasMore')