Billing & Plans
| Plan | What you get |
|---|---|
| Free Trial | 7 days, 1,000 jobs. Full feature access. No credit card required. |
| Pay as you go | Buy credits in bulk. No monthly commitment, no expiration. |
| Enterprise | Unlimited jobs, custom invoicing, volume discounts, dedicated support. |
Credits
Section titled “Credits”Each job costs 1 credit. Credits are deducted when a job is submitted (not when it completes).
Check your balance:
curl https://dashboard.justcrawl.io/api/v1/plans/status \ -H "Authorization: Bearer YOUR_API_KEY"Response:
{ "plan": "trial", "canSubmitJobs": true, "remainingCredits": 847, "trialDaysLeft": 5, "isTrialExpired": false}When credits run out
Section titled “When credits run out”Job submission returns HTTP 402 Payment Required. Existing scheduled jobs will not run. Recharge credits to resume.
Recharging
Section titled “Recharging”Submit a recharge request from Settings > Billing or via API:
curl -X POST https://dashboard.justcrawl.io/api/v1/plans/recharge-request \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "orgCountry": "US", "phone": "+1234567890", "expectedMonthlyVolume": "10000-50000" }'Recharge requests are processed manually. You’ll receive credits once payment is confirmed.
Transaction history
Section titled “Transaction history”View all credit transactions (debits from jobs, credits from recharges):
curl https://dashboard.justcrawl.io/api/v1/plans/transactions?page=1&pageSize=25 \ -H "Authorization: Bearer YOUR_API_KEY"Cost estimation
Section titled “Cost estimation”Each workflow shows an estimated cost per 1,000 requests on the workflow list page. This uses your vendor pricing configuration and the probability-weighted expected cost formula (accounting for fallback probability).