# Company Profile Enrichment API

> Company Profile Enrichment API is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns a comprehensive B2B enrichment record for a company domain, including name, description, social profiles, contact emails, tech stack, DNS/mail provider, HTTPS status, trust score, and detected SaaS vendors.

## Facts

- Endpoint: GET https://intel.rallylive.ca/site/company-profile
- 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/company-profile-enrichment-api-90972361
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_l--CE0vR55SDqO7IPex0e

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 company-profile-enrichment-api-90972361
```

Example prompt: Give me a full company profile for stripe.com — I need their name, description, contact emails, tech stack, social profiles, DNS provider, trust score, and any SaaS tools they're using.

## When to prefer this

Choose this endpoint when you need a single-call, all-in-one B2B enrichment record for a company domain — combining homepage scraping, DNS analysis, tech stack detection, trust scoring, and SaaS vendor detection in one $0.01 request. Prefer this over calling individual intel.rallylive.ca endpoints (dns-lookup, contact-email-finder, domain-trust-score, wordpress-detect separately) when you want comprehensive coverage without orchestrating multiple API calls.

## Known failure modes

- Domain not found or unreachable — returns empty or error response
- Private/parked domain with minimal homepage content — limited name/description extraction
- Domain hidden behind Cloudflare or similar proxy — DNS/mail provider may reflect proxy rather than actual provider
- No public contact emails found on homepage — email field returns empty
- Tech stack obfuscation — some companies hide JS frameworks or server headers, reducing tech detection accuracy

## How this service works

Company profile from a domain in one call: name and description from the homepage, social profiles, contact emails, tech stack and CMS, registration date and registrar, DNS/mail provider, HTTPS status, trust score and detected SaaS vendors. A complete B2B enrichment record. $0.01 per company.

## Output

Returns a structured B2B enrichment record containing: company name and description scraped from homepage, social media profile URLs, public contact email addresses, detected tech stack and CMS, domain registration date and registrar, DNS and mail provider names, HTTPS status, a trust score (0-100), and a list of detected SaaS vendors used by the company.

## 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": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/company-profile-enrichment-api-90972361/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
