# Save an Intelligence Snapshot

> Save an Intelligence Snapshot 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).

Stores a point-in-time snapshot of a company web page to enable later change detection and competitive monitoring.

## Facts

- Endpoint: POST https://agents.bytemine.ai/functions/v1/api-gateway/company/intel/snapshot
- 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-save-an-intelligence-snapshot-740ad3e6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JOJr5vj1gFYIvUDRk4ZHw

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-save-an-intelligence-snapshot-740ad3e6 -d '<json body>'
```

Example prompt: Save a snapshot of Acme Corp's pricing page at https://acmecorp.com/pricing right now so we can compare it later and catch any pricing changes.

## When to prefer this

Use this endpoint when you need to establish a baseline of a company page before monitoring it for changes. It is the required first step before calling the changes (diff) endpoint. Prefer this over the analyze or intelligence endpoints when your goal is temporal monitoring rather than immediate structured extraction — this endpoint stores state, not insight.

## Known failure modes

- Invalid or unreachable URL returns an error with no snapshot created
- Page behind authentication or bot-protection walls may return incomplete or empty content
- Network timeouts on slow-loading pages may cause the snapshot to fail
- Malformed URL input fails schema validation before the request is sent
- Duplicate snapshots of the same URL are allowed but each costs $1 — no deduplication guard

## 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 a snapshot_id (unique identifier for the saved snapshot) and a created_at timestamp indicating when the snapshot was taken. The snapshot_id is used as input to the changes endpoint to compare the page's current content against this saved state.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "Page URL to snapshot."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "created_at": {
   "type": "string"
  },
  "snapshot_id": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-bytemine-ai-save-an-intelligence-snapshot-740ad3e6/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)
