Utilities

Usage

Get plan and usage stats for current account

GET
/v1/usage-stats
AuthorizationBearer <token>

API key authentication - use your Late API key as a Bearer token

In: header

Response Body

application/json

application/json

application/json

curl -X GET "https://getlate.dev/api/v1/usage-stats"
{
  "planName": "Pro",
  "billingPeriod": "monthly",
  "signupDate": "2024-01-15T10:30:00Z",
  "limits": {
    "uploads": 500,
    "profiles": 10
  },
  "usage": {
    "uploads": 127,
    "profiles": 3,
    "lastReset": "2024-11-01T00:00:00Z"
  }
}
{
  "error": "Unauthorized"
}
{
  "error": "Not found"
}