Skip to main content
GET
/
usage
Get API Usage and Limits
curl --request GET \
  --url https://senderr.dev/api/v1/usage \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "usage": {
    "limit": 500,
    "remaining": 450,
    "reset": "2024-02-01T00:00:00Z",
    "plan": "free"
  }
}

Authorizations

Authorization
string
header
required

Use your API key from the dashboard. Format: Bearer your-api-key-here

Response

Successfully retrieved usage information

success
boolean
Example:

true

usage
object