# Bytemine Company Intelligence Extractor

> Bytemine Company Intelligence Extractor is a paid API for AI agents from bytemine.pay.zeroclick.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Extracts structured data from any company webpage using a predefined schema such as company profile, team members, pricing, tech stack, social links, branding, or full intelligence.

## Facts

- Endpoint: POST https://bytemine.pay.zeroclick.io/functions/v1/api-gateway/company/intel/extract
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bytemine-company-intelligence-extractor-4b720763
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ae-K1LMMXaUNmqwDY1-yj

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 bytemine-company-intelligence-extractor-4b720763 -d '<json body>'
```

Example prompt: Can you extract the full company profile from https://stripe.com using the company_profile schema — I want structured fields like their description, industry, and location?

## When to prefer this

Prefer this endpoint when you need structured, schema-driven extraction from a specific company URL rather than raw HTML or unstructured text. It is ideal for B2B sales enrichment, competitive analysis, or lead research workflows where you want predictable JSON fields without building your own scraper. Choose the specific schema (e.g., pricing, tech_stack) when you only need one dimension of data, or full_intelligence for a comprehensive company dossier in a single call.

## Known failure modes

- URL is inaccessible or returns a non-200 status — extraction fails with an error
- Company page uses heavy JavaScript rendering that blocks scraping — partial or empty results
- Invalid or unsupported schema enum value — request rejected with validation error
- URL points to a non-company page (e.g., blog post, login wall) — schema fields may be mostly empty
- Payment failure via x402 protocol — request not processed

## How this service works

Turn any company page into structured fields using a prebuilt schema: company_profile, team_members, pricing, tech_stack, social_links, branding, or full_intelligence.

## Output

Returns structured JSON fields corresponding to the requested schema: for company_profile — name, description, industry, location, size; for team_members — names, titles, bios; for pricing — plans, prices, features; for tech_stack — detected technologies by category; for social_links — all social media URLs; for branding — colors, fonts, logo URLs; for full_intelligence — 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."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bytemine-company-intelligence-extractor-4b720763/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bytemine.pay.zeroclick.io](https://www.zero.xyz/host/bytemine.pay.zeroclick.io/llms.txt)
