# Interzoid Company Verification API

> Interzoid Company Verification 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-14).

Verifies a company or organization name and returns a confidence score with AI-generated reasoning about its legitimacy and business registration status

## Facts

- Endpoint: GET https://api.interzoid.com/getcompanyverification
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-company-verification-api-18c50d74
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sJ5U-HouoSbqAhRveP8wB

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-company-verification-api-18c50d74
```

Example prompt: Can you verify whether 'Acme Global Solutions LLC' is a real, registered company and give me a confidence score on how legitimate it is?

## When to prefer this

Use this endpoint when you need to quickly assess whether a company name corresponds to a real, registered business entity — particularly useful for vendor onboarding, KYB (Know Your Business) checks, CRM data quality, or filtering out fictitious organizations from datasets. Prefer this over general web search when you need a structured score and AI reasoning rather than raw search results.

## Known failure modes

- Invalid or empty lookup parameter returns an error code
- Unrecognized or obscure company names may return low scores with limited reasoning
- Payment failure (402) if USDC balance is insufficient
- Rate limiting or API key issues returning 401/403
- Very new companies with limited online presence may receive low scores despite being legitimate

## How this service works

Verify whether a company or organization exists and retrieve a verification score from 0-99 with detailed AI-generated reasoning reflecting legitimacy and credibility.

## Output

Returns a JSON object with a Code field (e.g. 'Success'), a numeric Score (0-100) representing confidence in the company's legitimacy, a Credits field showing remaining balance, and a Reasoning field containing a human-readable AI explanation of why the score was assigned — including details about business registration, online presence, and verifiable employee profiles.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "lookup": "Microsoft Corporation"
  }
 }
}
```

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Code": "Success",
  "Score": "95",
  "Credits": "0",
  "Reasoning": "Anthropic PBC is a verified Public Benefit Corporation headquartered in San Francisco, CA with documented business registration, significant online presence, and verifiable employee profiles."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-company-verification-api-18c50d74/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)
