# Public Web Company Intelligence Research Pack

> Public Web Company Intelligence Research Pack 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).

Fetches a structured intelligence pack about a company from its public web presence, including description, contacts, technology signals, and contactability score

## Facts

- Endpoint: GET https://functions.miniup.app/company-intel/research-pack
- 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-research-pack-c2436ec6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9rgUqhWLHA-fDQ-p3Qa8K

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-research-pack-c2436ec6
```

Example prompt: Can you pull up a full intelligence pack on stripe.com — I want their public contacts, tech stack, pricing page, and how contactable they are before I reach out?

## When to prefer this

Use this endpoint when you need a quick, structured intelligence pack on a company from just its domain — especially for sales prospecting, lead enrichment, or pre-outreach research. It combines contact discovery, technology fingerprinting, and contactability scoring in a single call, making it more efficient than stitching together multiple specialized APIs. Prefer it when you need public web signals rather than firmographic database records.

## Known failure modes

- Domain not found or unreachable — ok:false returned with no company data
- Domain resolves but has no indexable public content — sparse or empty results
- Contactability score may be low or zero for companies with minimal web presence
- Social profiles or emails may be incomplete if company uses heavy JavaScript rendering
- Rate limiting or payment failure may block the request

## How this service works

Public Web Company Intelligence: 

## Output

A structured JSON object containing: company name, website, and description; public contact details (emails, phone numbers, social profiles, associated people); a pricing page URL if found; an array of detected technology signals; and a numeric contactability score indicating how reachable the company is via public channels. Also includes a sourcePolicy field describing 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-research-pack-c2436ec6/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)
