# Interzoid Get Business Info API

> Interzoid Get Business Info 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-15).

Retrieves AI-enriched business intelligence for a company given its name, domain, or email, returning executive info, revenue, employee count, NAICS code, location, and description.

## Facts

- Endpoint: GET https://api.interzoid.com/getbusinessinfo
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-get-business-info-api-2fafafce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OLUiVDXfJUvdk_pAi7RGE

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-get-business-info-api-2fafafce
```

Example prompt: Can you pull up the business info for Stripe — I want to know their revenue, number of employees, CEO, and headquarters address?

## When to prefer this

Use this endpoint when you need structured firmographic data about a company — including revenue, headcount, executive leadership, and industry classification — given only a company name, domain, or email. Prefer it over web search when you need clean, structured output ready for CRM enrichment, lead qualification, or analytics pipelines.

## Known failure modes

- Company not found in database — returns non-success Code with empty fields
- Ambiguous company name matches multiple entities — may return best-guess or error
- Invalid or missing 'lookup' query parameter — returns error response
- Rate limit or payment failure — returns 402 or quota error
- Domain or email does not resolve to a known company — returns empty result

## How this service works

Retrieve comprehensive AI-powered business intelligence for a company including industry classification, revenue data, employee counts, contact information, and more.

## Output

A JSON object containing the company's canonical name, website URL, NAICS industry code, estimated revenue, employee count, top executive name and title, physical address, and a short company description. Also includes a status code and remaining credits.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "lookup": "Apple Inc"
  }
 }
}
```

## 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": "Company name, domain, or email to retrieve business intelligence for"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Code": "Success",
  "NAICS": "522320",
  "Credits": "0",
  "Revenue": "$14 billion",
  "CompanyURL": "stripe.com",
  "CompanyName": "Stripe, Inc.",
  "TopExecutive": "Patrick Collison",
  "CompanyLocation": "354 Oyster Point Blvd, South San Francisco, California, 94080",
  "NumberEmployees": "8,000",
  "TopExecutiveTitle": "CEO and Co-founder",
  "CompanyDescription": "Stripe, Inc. is a financial infrastructure technology company that builds economic infrastructure for the internet."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-get-business-info-api-2fafafce/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)
