# Continue a Deep Site Scan

> Continue a Deep Site Scan is a paid API for AI agents from agents.bytemine.ai, paid per call via MPP or x402, $1/call, status unknown (last checked 2026-09-15).

Resume processing pending pages in an existing multi-page site scan job, advancing it toward completion one batch at a time.

## Facts

- Endpoint: POST https://agents.bytemine.ai/functions/v1/api-gateway/company/intel/scan/continue
- Price: $1/call
- Payment: MPP, x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Provider: agents.bytemine.ai
- Website: https://agents.bytemine.ai
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agents-bytemine-ai-continue-a-deep-site-scan-45e27e18
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fhSadGqvniBlDbGYs0ITb

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability agents-bytemine-ai-continue-a-deep-site-scan-45e27e18 -d '<json body>'
```

Example prompt: Keep processing the remaining pages in my deep site scan — the job ID is scan_abc123 — and let me know how many pages have been crawled and how many are still pending.

## When to prefer this

Use this endpoint after calling 'Start a deep site scan' when the scan status is still 'in_progress' and pages_pending is greater than zero. Call it in a polling loop until status returns 'completed'. Prefer this over re-starting a scan to avoid duplicate work and extra cost. Do not use this to retrieve final results — use the 'Deep scan results' endpoint once the scan is completed.

## Known failure modes

- Invalid or unknown job_id returns an error — ensure the job was created via the Start a deep site scan endpoint
- Scan may already be completed — check status field before calling again to avoid unnecessary billing
- Network timeout on large batches — retry with the same job_id
- Rate limiting or payment failure may interrupt processing mid-scan

## How this service works

Bytemine is a B2B data platform for sales and go to market teams. It covers contact and company search across 135M professionals and 10M companies, contact and company enrichment, LinkedIn profile search and enrichment, live company intelligence read from a company's own web presence, technographics, buying intent scoring, and hiring, funding, job posting, and job change signals. Search results bill per record returned, enrichment bills only on a successful match, and count queries are free. This server is a pay-per-use, transparent proxy in front of Bytemine's own API: it handles identity, payment, and proxying. Agents can purchase autonomously or with their human's approval. This document is the source of truth for agents: it lists the complete verified paid surface with each operation's live price in its x-payment-info. Endpoints not listed here are not part of the supported catalog. The live catalog at /manifest.json is authoritative for prices and any free included units (prices[].includedUnits) - some meters include free usage per account before any charge, reserved for agents claimed by a human with a verified email.

## Output

Returns the scan job ID, current status (e.g. 'in_progress' or 'completed'), total pages crawled so far, and number of pages still pending. The agent should call this endpoint repeatedly until status equals 'completed'.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "job_id": {
   "type": "string",
   "description": "Scan job ID."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "job_id": {
   "type": "string"
  },
  "status": {
   "type": "string"
  },
  "pages_crawled": {
   "type": "integer"
  },
  "pages_pending": {
   "type": "integer"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-bytemine-ai-continue-a-deep-site-scan-45e27e18/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.bytemine.ai](https://www.zero.xyz/host/agents.bytemine.ai/llms.txt)
