Skip to content

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. |

Each job costs 1 credit. Credits are deducted when a job is submitted (not when it completes).

Check your balance:

Terminal window
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
}

Job submission returns HTTP 402 Payment Required. Existing scheduled jobs will not run. Recharge credits to resume.

Submit a recharge request from Settings > Billing or via API:

Terminal window
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.

View all credit transactions (debits from jobs, credits from recharges):

Terminal window
curl https://dashboard.justcrawl.io/api/v1/plans/transactions?page=1&pageSize=25 \
-H "Authorization: Bearer YOUR_API_KEY"

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).