# Live Company Intelligence Report

> Live Company Intelligence Report is a paid API for AI agents from ai-data-marketplace-1042299154756.us-central1.run.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Runs a live multi-signal company intelligence and vendor-enrichment report from a domain, covering DNS, TLS, web identity, technology fingerprints, and optional GLEIF and SEC identity matching.

## Facts

- Endpoint: GET https://ai-data-marketplace-1042299154756.us-central1.run.app/api/v1/company_intelligence
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/live-company-intelligence-report-7e2630c0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yG4qatH5NeO5Q9mbPY4xI

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 live-company-intelligence-report-7e2630c0
```

Example prompt: Can you run a full company intelligence report on stripe.com — include their TLS status, tech stack, DNS details, and if you can, match their GLEIF legal entity and SEC identity using ticker STRP?

## When to prefer this

Choose this endpoint when you need a comprehensive, multi-signal live profile of a company from its domain — combining DNS, TLS, web identity, technology fingerprints, and optional regulatory identity (GLEIF, SEC) in a single call. Prefer this over a plain DNS lookup or WHOIS tool when you need vendor enrichment or KYB-style due diligence. Use the sibling DNS and RDAP Domain Lookup endpoint instead if you only need raw DNS and registration records without the broader company intelligence layer.

## Known failure modes

- Domain does not resolve — DNS lookup fails, partial results returned
- TLS certificate invalid or expired — tls_authorized returns false
- GLEIF match not found for the provided company name — field absent or empty
- SEC identity not found for ticker — field absent or empty
- Domain input missing — request rejected with validation error
- Rate limiting or upstream data source unavailability — partial or degraded response

## How this service works

Run a live company intelligence and vendor-enrichment report from a domain, including DNS and registration evidence, TLS status, public website identity, technology fingerprints, optional GLEIF legal-entity matches, and optional SEC identity.

## Output

Returns a JSON object with a success flag, a company object containing the company name, domain, TLS authorization status, detected technology fingerprints, and extended fields for DNS records, RDAP registration metadata, GLEIF legal entity matches, and SEC identity data when a ticker is provided, plus a list of all checks completed during the report run.

## 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",
     "required": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "description": "Public company domain to enrich."
      },
      "ticker": {
       "type": "string",
       "description": "Optional US public-company ticker for SEC identity and filing evidence."
      },
      "company": {
       "type": "string",
       "description": "Optional legal or trading name for GLEIF matching."
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "success",
      "company",
      "checks_completed"
     ],
     "properties": {
      "company": {
       "type": "object",
       "required": [
        "name",
        "domain",
        "tls_authorized",
        "technologies"
       ],
       "properties": {
        "name": {
         "type": "string"
        },
        "domain": {
         "type": "string"
        },
        "technologies": {
         "type": "array",
         "items": {}
        },
        "tls_authorized": {
         "type": "boolean"
        }
       },
       "additionalProperties": true
      },
      "success": {
       "type": "boolean"
      },
      "checks_completed": {
       "type": "array",
       "items": {
        "type": "string"
       }
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "company": {
   "name": "Stripe",
   "domain": "stripe.com",
   "technologies": [],
   "tls_authorized": true
  },
  "success": true,
  "checks_completed": [
   "dns_and_registration",
   "tls_certificate"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/live-company-intelligence-report-7e2630c0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ai-data-marketplace-1042299154756.us-central1.run.app](https://www.zero.xyz/host/ai-data-marketplace-1042299154756.us-central1.run.app/llms.txt)
