Does the Orders API have a throttle limit?

Does anyone here know if the shopify orders API has a throttle limit?I want to make function in AWS that queries my store every 60 seconds, something like this

import requestsurl = "[https://0ab0418b2848cf6a73dc9d12cc86ae5a](https://0ab0418b2848cf6a73dc9d12cc86ae5a/):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@fittraction-store.myshopify.com/admin/orders.json"payload={}
headers = {
  'Cookie': '_y=e99bad10-4d6c-453d-b149-4bcae09e0db6; _s=346384d2-ff1f-44f7-9228-19538a6d761a; _shopify_y=e99bad10-4d6c-453d-b149-4bcae09e0db6; _shopify_s=346384d2-ff1f-44f7-9228-19538a6d761a; _shopify_fs=2021-03-08T23%3A32%3A24Z'
}response = requests.request("GET", url, headers=headers, data=payload)print(response.text)

anyone know if this causes a problem?