# Bytemine Structured Intelligence Extract

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

Extracts structured fields from any company webpage using a prebuilt schema such as company_profile, team_members, pricing, tech_stack, social_links, branding, or full_intelligence.

## Facts

- Endpoint: POST https://agents.bytemine.ai/functions/v1/api-gateway/company/intel/extract
- Price: $0.02/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-structured-intelligence-extract-e8b83a49
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WAC6D3SNPw0S1s0xqvdaZ

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-structured-intelligence-extract-e8b83a49 -d '<json body>'
```

Example prompt: Pull the pricing details from stripe.com/pricing and give me back structured pricing fields — use the pricing schema.

## When to prefer this

Choose this endpoint when you need structured, schema-validated data from a specific company page rather than raw content. It is ideal for sales and go-to-market workflows where you need particular fields (e.g. pricing tiers, team members, tech stack) without building your own parser. Prefer it over the generic page analyzer when you want clean, typed output rather than free-form text. Use full_intelligence when you want everything in one call from a single URL, or a targeted schema when you only need one category of data.

## Known failure modes

- URL is inaccessible or returns a non-200 response — extractions may be empty or partial
- Schema type not supported for the given page content — extractions object may have null or sparse fields
- Page is JavaScript-rendered and content cannot be read — extraction may fail or return incomplete data
- Invalid or malformed URL — request rejected with validation error
- Rate limiting or payment failure — request blocked before processing

## 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 an 'extractions' object whose fields vary depending on the chosen schema: company_profile returns company name, description, industry, size, and similar fields; team_members returns a list of people with names, roles, and contact details; pricing returns plan names, prices, and features; tech_stack returns detected technologies and categories; social_links returns URLs to social profiles; branding returns logos, colors, and brand assets; full_intelligence returns all of the above combined.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "Page URL to extract from."
  },
  "schema": {
   "enum": [
    "company_profile",
    "team_members",
    "pricing",
    "tech_stack",
    "social_links",
    "branding",
    "full_intelligence"
   ],
   "type": "string",
   "description": "Extraction schema."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "extractions": {
   "type": "object",
   "description": "Fields depend on the chosen schema."
  }
 }
}
```

## More

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