How To Check Your API Usage
Daily API usage numbers reset at 8PM eastern time, so if you want to see your usage statistics it’s as easy as checking the headers of any successful response.
Usage Details Are In The Header Of Successful Responses
- x-uw-daily-req-count = Successful hits so far today
- x-uw-token-req-limit = Your daily limit
- x-uw-minute-req-counter = Successful hits so far this minute
- x-uw-req-per-minute-remaining = Number of successful hits you have left in this minute
- x-uw-req-per-minute-reset = Number of milliseconds before your per-minute counter resets
Python Example
Here is a python example using the httpx module:

These are the results:
Daily successful hits: 1
Daily limit: 15000
Successful hits this minute: 1
Successful hits available this minute: 119
Milliseconds til minute counter resets: 55634
