Endpoint
GET https://api.screenshotly.dev/v1/screenshots/usage
| Header | Required | Description |
|---|
X-API-Key | Yes | Your API key |
Response
200 OK
{
"success": true,
"data": {
"subscription": {
"status": "active",
"plan": "STARTER"
},
"plan": {
"id": "starter",
"name": "Starter",
"limits": {
"monthly": {
"screenshots": 5000,
"storage": "5 GB"
}
}
},
"limit": 5000,
"usage": 1234,
"remaining": 3766,
"percentUsed": 25
}
}
Response fields
Your current subscription status and plan name.
Details of your plan including limits and features.
Total monthly screenshot allowance.
Screenshots captured this month.
Remaining screenshots available this month.
Percentage of monthly limit used (0–100).
Example
curl https://api.screenshotly.dev/v1/screenshots/usage \
-H "X-API-Key: $SCREENSHOTLY_API_KEY"