# Interzoid Private Company Deal Intelligence API

> Interzoid Private Company Deal Intelligence API is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-16, last successful call 2026-07-17).

Retrieves funding, valuation, and investor intelligence for a named private company

## Facts

- Endpoint: GET https://api.interzoid.com/getprivatecompanydealintel
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Last successful call: 2026-07-17
- Success rate: 86% of calls made through Zero
- Rating: 4.0 / 5 from 1 review
- Activations on Zero: 14
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-private-company-deal-intelligence-api-f95617d0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r6OCrPAoWye_pSKDjRgHQ

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 interzoid-private-company-deal-intelligence-api-f95617d0
```

Example prompt: What's the current valuation, latest funding round, total capital raised, and key investors for Databricks?

## When to prefer this

Use this endpoint when you need quick, structured deal intelligence on a known private company — including valuation estimates, funding round history, and investor names — without scraping news or manual research. Ideal for sales intelligence, due diligence prep, or CRM enrichment workflows.

## Known failure modes

- Company not found or not covered returns empty or error code
- Misspelled company name yields no results
- Very small or obscure private companies may have no data
- Stale data if company recently closed a new round
- API returns error if 'lookup' query parameter is missing

## How this service works

Retrieve private company deal intelligence including funding rounds, valuations, investors, M&A activity, and ownership changes.

## Output

Returns a JSON object with the company name, valuation, latest funding round label (e.g. Series J), total capital raised, and a list of key investors, along with a success/error code and credits used.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "lookup": "OpenAI"
  }
 },
 "output": {
  "type": "object"
 }
}
```

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Code": "Success",
  "Credits": "0",
  "Valuation": "$43 billion",
  "CompanyName": "Databricks",
  "LatestRound": "Series J",
  "TotalRaised": "$14 billion",
  "KeyInvestors": "Andreessen Horowitz, Tiger Global, Wellington Management"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-private-company-deal-intelligence-api-f95617d0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.interzoid.com](https://www.zero.xyz/host/api.interzoid.com/llms.txt)
