The IPinfo Dashboard displays an account summary section with usage statistics, including a breakdown like:
99% remaining | 149.8K left | 214 of 150K requests used
A daily usage bar chart appears below the summary. This chart updates as requests are made in near real time. This enables you track you usage against your plan's quota limit effectively.
Request counts reset monthly, measured from the first day of the month to the last even if the billing cycle starts on a different date.
You can also view your usage from the dedicated API dashboard.
IPinfo Lite Usage
IPinfo Lite API usage is tracked separately because it's unlimited. To view Lite API request statistics, visit the IPinfo Lite Dashboard and scroll to the IPinfo Lite API Request Statistics section.
Note: Unlike other usage charts, IPinfo Lite usage charts are updated with a 24hr delay.
Tracking Usage Programmatically
To check usage via the API, query the /me endpoint:
curl https://ipinfo.io/me?token=$TOKEN
This returns account metadata, including current request counts. Here's an example:
{
"token": "$TOKEN",
"requests": {
"day": 1980,
"month": 34591,
"limit": 250000,
"remaining": 215409
},
"features": {
"core": {
"daily": 2147483647,
"monthly": 250000
},
...Request Limit Errors
When the API limit is reached, the API returns a 429 error code along with a useful error message. Here's more details about handling rate limits.