This error occurs when you’re trying to perform an operation on a rate limit override that doesn’t exist in the Unkey system. Rate limit overrides are used to create custom rate limits for specific identifiers within a namespace.Common scenarios that trigger this error:
Using an incorrect override ID
Referencing an override that has been deleted
Trying to get or modify an override for an identifier that doesn’t have one
Using the wrong namespace when looking up an override
Here’s an example of a request that would trigger this error:
Copy
Ask AI
# Attempting to get a non-existent rate limit overridecurl -X POST https://api.unkey.com/v2/ratelimit.getOverride \ -H "Content-Type: application/json" \ -H "Authorization: Bearer unkey_YOUR_API_KEY" \ -d '{ "namespaceId": "ns_123abc", "identifier": "user_without_override" }'