Hey everyone, Iām gettting a [429] error which seems to be I exceeded my rate limit with the API, Do you guys know where I can check my rate limit and/or how to change that rate? It seems the Gammapify submission has burned through my tokens and rate limit š Amanda R.
Hey Alvaro! Unless you're firing tens of thousands of requests per second (which I doubt you are š ) you shouldn't actually be hitting the rate limit. A couple things that might be going on: Polling issue - The API is async, so the flow is: POST to kick off a generation ā get back a generationId ā then poll the GET endpoint with that ID until the status comes back as "completed". If that polling step isn't wired up right, or if you're hammering the GET endpoint too fast without a delay between checks, that could trigger rate limiting. Usually a 5-10 second wait between polls is plenty. Credits vs rate limit - Just to rule it out: a 429 "Too many requests" is rate limiting, but if you're actually out of credits you'd see a 403 "Forbidden" instead. Worth checking your balance at https://gamma.app/settings/billing to make sure that's not the issue. Make.com? - If you're using Make.com, heads up that our official integration is still on the old v0.2 endpoint. We'll be updating it soon, but that could be causing some quirks in the meantime. Can you share a Loom or walkthrough of your whole flow? Would help me see exactly what's happening and where it's breaking down. Curious to see what you built for the contest too!
