Endpoint
Authentication
Requires a valid Bearer token in the Authorization header.Request
This endpoint does not require any request body or query parameters. Simply make a GET request with your authentication token.Response Fields
The number of jobs you have captured this month.Example:
15Your monthly job capture limit. A value of
-1 indicates unlimited quota.Example: 50 or -1 (unlimited)The number of job captures remaining this month. Returns
-1 for unlimited plans.Example: 35 or -1 (unlimited)The date when your quota will reset, in
YYYY-MM-DD format.Example: "2024-02-01"Example Request
Example Response
Understanding Quota Limits
What counts toward my quota?
What counts toward my quota?
Only newly created jobs count toward your monthly quota. If you attempt to create a job with a source URL that already exists in your tracker, it will not consume quota.Actions that count:
- Creating a new job via API
- Capturing a new job via browser extension
- Updating an existing job
- Creating a duplicate job (same source URL)
- Viewing or analyzing existing jobs
How do unlimited quotas work?
How do unlimited quotas work?
Premium and enterprise plans have unlimited job capture quotas. For these plans:
limitwill be-1remainingwill be-1usedwill show your actual usage for tracking purposes- You can create as many jobs as needed
When does my quota reset?
When does my quota reset?
Your quota resets on the first day of each month, as indicated by the
reset_date field. The reset happens at midnight UTC.After the reset:usedreturns to 0remainingreturns to your full limit- Previous month’s data is archived
What happens when I reach my limit?
What happens when I reach my limit?
When your quota is exhausted (
remaining reaches 0):- API requests to create new jobs will fail with a 403 error
- Browser extension will display a quota exceeded message
- You can still view, update, and analyze existing jobs
- You can upgrade your plan for a higher quota
Usage Examples
Check Before Creating a Job
Monitor Quota Usage
Source Code Reference
The implementation can be found in:- Handler:
internal/api/job/handlers.go:127 - Routes:
internal/api/job/routes.go:12 - Quota Models:
internal/quota/models/
Related Resources
Create Job
Add jobs to your tracker
Jobs API Overview
Learn about the Jobs API