# Public Web Company Intelligence – Contacts & Signals

> Public Web Company Intelligence – Contacts & Signals 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).

Looks up a company by domain and returns public contact information, technology signals, commercial signals, and a contactability score scraped from the public web.

## Facts

- Endpoint: GET https://functions.miniup.app/company-intel/contacts
- 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-contacts-signals-353490cc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iEPDhbSDul_1eS6Kt9H0a

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-contacts-signals-353490cc
```

Example prompt: Can you pull up the public contact info and tech signals for stripe.com — I want their publicly listed emails, any phone numbers, social profiles, and a sense of how contactable they are?

## When to prefer this

Choose this endpoint when you need a quick, single-call enrichment of a company domain to gather public-web contact data, technology signals, and a contactability score — especially in sales prospecting, lead qualification, or competitive research workflows. It is well-suited for agentic pipelines where you have a domain and want structured intelligence without scraping manually. Prefer alternatives if you need private/registry WHOIS data, real-time web scraping of arbitrary pages, or CRM-integrated enrichment.

## Known failure modes

- Domain not found or no public data available — returns ok: false
- Invalid or malformed domain string — likely returns an error or empty result
- Company website blocks crawlers — may return sparse or empty contact arrays
- Rate limiting or payment failure — endpoint returns 402 if USDC payment is not settled
- Very new or obscure domains may yield low-confidence or empty results

## How this service works

Public Web Company Intelligence: 

## Output

Returns a JSON object with the company's name, website, and description; an array of publicly found email addresses, phone numbers, people, and social profiles; 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.

## 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-contacts-signals-353490cc/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)
