# Public Web Company Intelligence

> Public Web Company Intelligence is a paid API for AI agents from functions.miniup.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Extracts company information from a public website domain, including contacts, tech stack signals, and commercial indicators

## Facts

- Endpoint: GET https://functions.miniup.app/company-intel/extract
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/public-web-company-intelligence-e40fc38c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_h-uCI3_2ZAIDGMkU5DhJb

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 public-web-company-intelligence-e40fc38c
```

Example prompt: Pull up the company intelligence for stripe.com — I need their public contact emails, social profiles, tech stack signals, and any pricing page they have listed.

## When to prefer this

Choose this endpoint when you need a fast, single-call enrichment of a company domain that surfaces public contacts, tech signals, and commercial indicators without managing your own scraping infrastructure. It is particularly well-suited for B2B sales prospecting, lead qualification, and competitive research workflows where you have a company domain and want structured intelligence back immediately. Prefer it over general-purpose web scraping when you specifically want parsed company-level entities like emails, socials, and tech stack rather than raw HTML.

## Known failure modes

- Domain not resolvable or website offline — returns ok:false with no company data
- No public contacts found on the domain — returns empty arrays for emails, phones, people
- Rate limiting or payment failure — HTTP 402 if payment not processed correctly
- Invalid or malformed domain query parameter — may return error or empty result
- Private or blocked website that disallows scraping — limited or no data returned

## How this service works

Public Web Company Intelligence: 

## Output

Returns a structured JSON object with the company's name, website, and description; an array of public contact emails, phones, and social profiles; an array of detected technology signals; a link to the pricing page if found; a contactability score (0–1); and a source policy string indicating how the data was gathered.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "domain": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "company": {
       "type": "object",
       "properties": {
        "name": {
         "type": "string"
        },
        "website": {
         "type": "string"
        },
        "description": {
         "type": "string"
        }
       }
      },
      "sourcePolicy": {
       "type": "string"
      },
      "publicContacts": {
       "type": "object",
       "properties": {
        "emails": {
         "type": "array",
         "items": {
          "type": "string"
         }
        },
        "people": {
         "type": "array"
        },
        "phones": {
         "type": "array"
        },
        "socials": {
         "type": "object",
         "properties": {}
        }
       }
      },
      "commercialSignals": {
       "type": "object",
       "properties": {
        "pricingPage": {
         "type": "string"
        }
       }
      },
      "technologySignals": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "contactabilityScore": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/public-web-company-intelligence-e40fc38c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from functions.miniup.app](https://www.zero.xyz/host/functions.miniup.app/llms.txt)
