Hi, this morning I got a RESOURCE_EXHAUSTED error and I can’t get rid of it.
curl “``https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash:generateContent``”
-H “x-goog-api-key: XXX”
-H ‘Content-Type: application/json’
-X POST
-d ‘{
“contents”: [
{
“parts”: [{ “text”: “Explain how AI works in a few words”}]
}
]
}’
Response
{
“error”: {
“code”: 429,
“message”: “Resource has been exhausted (e.g. check quota).”,
“status”: “RESOURCE_EXHAUSTED”
}
}
I am easily under the rate limit, but the API stopped working. Any idea how to fix this, or can Google fix this?

