# Bytemine Single Page Intelligence Analyzer

> Bytemine Single Page Intelligence Analyzer is a paid API for AI agents from agents.bytemine.ai, paid per call via MPP or x402, $0.01/call, status unknown (last checked 2026-09-13).

Fetches a company web page in real time and returns structured content, extracted links, metadata, and detected tech stack.

## Facts

- Endpoint: POST https://agents.bytemine.ai/functions/v1/api-gateway/company/intel/page
- Price: $0.01/call
- Payment: MPP, x402
- Status: unknown
- Last checked: 2026-09-13
- 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-bytemine-single-page-intelligence-analyzer-ce24f5cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LO-77F47ME-DeybfXHbIQ

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-bytemine-single-page-intelligence-analyzer-ce24f5cb -d '<json body>'
```

Example prompt: Can you read Stripe's pricing page at https://stripe.com/pricing right now and give me the structured content, all the links on the page, and what tech stack they're running?

## When to prefer this

Use this endpoint when you need to analyze a single specific company page in real time — especially when you need both the human-readable content AND the tech stack in one call. Prefer this over the bulk or deep-scan endpoints when you have a precise URL and need results immediately without crawling the broader site. Choose this over generic web scrapers when tech stack detection and structured metadata extraction are important for sales or GTM research.

## Known failure modes

- URL is unreachable or returns a non-200 status — success will be false with empty content
- Page is JavaScript-heavy and content cannot be fully rendered — partial or empty markdown returned
- URL is malformed or missing — request validation error returned
- Page blocks bots or scraping — may return empty or incomplete content
- Rate limiting or timeouts on the target server — may result in partial data or failure

## 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 JSON object with the original URL, a boolean success flag, the page content rendered as clean markdown, an array of all extracted links, a metadata object (title, description, Open Graph tags, etc.), and a tech_stack object listing detected technologies and frameworks.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string"
  },
  "links": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "success": {
   "type": "boolean"
  },
  "markdown": {
   "type": "string"
  },
  "metadata": {
   "type": "object"
  },
  "tech_stack": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-bytemine-ai-bytemine-single-page-intelligence-analyzer-ce24f5cb/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)
