# Deep Scan Results

> Deep Scan Results is a paid API for AI agents from agents.bytemine.ai, paid per call via MPP, price unknown, status unknown (last checked 2026-09-15).

Retrieve paginated structured results from a completed multi-page deep site scan job, including URL content, metadata, and discovered links.

## Facts

- Endpoint: POST https://agents.bytemine.ai/functions/v1/api-gateway/company/intel/scan/results
- Price: price unknown
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Provider: agents.bytemine.ai
- Website: https://agents.bytemine.ai
- Canonical page: https://www.zero.xyz/c/agents-bytemine-ai-deep-scan-results-e343e7a6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hndQrWBzBXPuMWoYPkPMQ

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-deep-scan-results-e343e7a6 -d '<json body>'
```

Example prompt: Give me the results from my completed Bytemine deep scan — the job ID is scan_abc12345 — show me page 2 with 50 results per page.

## When to prefer this

Use this endpoint after a deep site scan has been started and continued to completion. It is the correct endpoint for retrieving the structured output of multi-page crawl jobs — not for initiating a new scan, continuing an existing one, or analyzing a single page in real time. It is free and does not bill, making it safe to call repeatedly for pagination without cost concerns.

## Known failure modes

- Invalid or non-existent job_id returns an error or empty result set
- Scan not yet completed may return no results or an in-progress status
- Page number exceeding total pages returns empty results array
- Malformed request missing required job_id field returns a validation error

## How this service works

Retrieve paginated results from a completed scan. Each result includes the URL, structured content, metadata, and discovered links. Free, does not bill.

## Output

Returns a paginated list of scan result objects. Each object includes the crawled URL, clean structured content extracted from the page, page metadata (title, description, etc.), and links discovered on that page. Also returns the current page number and total result count for pagination navigation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "job_id"
 ],
 "properties": {
  "page": {
   "type": "integer",
   "description": "Page number. Default 1."
  },
  "job_id": {
   "type": "string",
   "description": "Scan job ID."
  },
  "per_page": {
   "type": "integer",
   "description": "Results per page. Default 50."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "page": {
   "type": "integer"
  },
  "total": {
   "type": "integer"
  },
  "results": {
   "type": "array",
   "items": {
    "type": "object"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-bytemine-ai-deep-scan-results-e343e7a6/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)
