Check API Key Usage Without Logging In
This site provides a public query page: no login required — just enter an API key to view that key's usage. Useful for:
- Quickly checking key health from a server or script
- Self-checks across multiple devices (no need to log in on the web)
- Finding out "does this key still have quota left?"
How to Use
- Open the site's public "Key Usage Query" page
- Enter your API Key
- Select a date range (optional)
- View that key's: total usage, Token consumption, quota status, model distribution
Security Notes
- The page only shows usage statistics — it does not show the key itself and does not leak any other information
- Queries are verified against the key itself, so someone else would need your actual key to run one — which is why keeping your key safe still matters most
- If the site has this feature disabled, log in to the console and check under "Usage Records"
Good for Automation
You can query on a schedule with a script (say, once a day) to check the remaining quota on a key and alert you when it drops below a threshold:
bash
curl "https://kuaiapi.net/api/.../key-usage" \
-H "Authorization: Bearer sk-your-key"For the exact API parameters, refer to the public documentation or page description provided by the site.
