# Wiza Company Enrichment API

> Wiza Company Enrichment API is a paid API for AI agents from wiza.withzero.xyz, paid per call via MPP, $0.02/call, status unknown (last checked 2026-09-14, last successful call 2026-07-17).

Enrich a single company by name, domain, LinkedIn ID, or slug to retrieve industry, size, revenue, funding, social profiles, and location data.

## Facts

- Endpoint: POST https://wiza.withzero.xyz/api/v1/company-enrichments
- Price: $0.02/call
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-07-17
- Success rate: 63% of calls made through Zero
- Rating: 5.0 / 5 from 2 reviews
- Activations on Zero: 33
- Provider: wiza.withzero.xyz
- Website: https://wiza.withzero.xyz
- Canonical page: https://www.zero.xyz/c/wiza-withzero-xyz-wiza-company-enrichment-api-ac54158e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3NbvRjhRRY59ZxqNlZNr1

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 wiza-withzero-xyz-wiza-company-enrichment-api-ac54158e -d '<json body>'
```

Example prompt: Can you enrich the company Stripe using their domain stripe.com and give me their industry, size, funding, and social profiles?

## When to prefer this

Use this endpoint when you need structured firmographic data (industry, size, revenue, funding, location, social) for a single known company and have at least one of: company name, domain, LinkedIn ID, or LinkedIn slug. Prefer this over person/contact enrichment endpoints when the target is a company entity rather than an individual. Best for CRM enrichment, lead qualification, account research, and sales intelligence workflows.

## Known failure modes

- No matching company found for the provided identifier — returns empty data object
- Invalid or malformed domain/LinkedIn slug — returns 400 or empty result
- Insufficient Wiza company enrichment credits — billing or credit error returned
- All four identifier fields omitted — schema validation error
- Rate limiting or upstream Wiza API unavailability — 5xx error

## How this service works

Enrich one company by name, domain, LinkedIn ID, or LinkedIn slug. Returns Wiza company industry, size, revenue, funding, social, and location fields. Metered billing settles from Wiza company enrichment API credits.

## Output

Returns a structured company profile including industry, size, size range, revenue range, total funding, last funding round and amount, founding year, company type, stock ticker, LinkedIn/Twitter/Facebook URLs, full address (street, locality, region, country, postal code), and a text description. Also returns remaining Wiza API credit balances and billing settlement details.

## Example request

```json
{
 "company_name": "Stripe"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "example": {
  "company_domain": "wiza.co"
 },
 "properties": {
  "company_name": {
   "type": "string",
   "minLength": 1,
   "description": "Company name to enrich, e.g. Wiza."
  },
  "company_domain": {
   "type": "string",
   "minLength": 1,
   "description": "Company domain to enrich, e.g. wiza.co."
  },
  "company_linkedin_id": {
   "type": "string",
   "minLength": 1,
   "description": "LinkedIn company ID."
  },
  "company_linkedin_slug": {
   "type": "string",
   "minLength": 1,
   "description": "LinkedIn company slug from the company URL."
  }
 },
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "domain": {
     "type": "string"
    },
    "credits": {
     "type": "object",
     "properties": {
      "api_credits": {
       "type": "object",
       "properties": {
        "total": {
         "type": "number"
        },
        "email_credits": {
         "type": "number"
        },
        "phone_credits": {
         "type": "number"
        },
        "scrape_credits": {
         "type": "number"
        },
        "company_credits": {
         "type": "number"
        }
       },
       "additionalProperties": {}
      }
     },
     "additionalProperties": {}
    },
    "company_name": {
     "type": "string"
    },
    "company_size": {
     "type": "number"
    },
    "company_type": {
     "type": "string"
    },
    "company_domain": {
     "type": "string"
    },
    "company_region": {
     "type": "string"
    },
    "company_street": {
     "type": "string"
    },
    "company_ticker": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ]
    },
    "company_country": {
     "type": "string"
    },
    "company_founded": {
     "type": "number"
    },
    "company_funding": {
     "anyOf": [
      {
       "type": "number"
      },
      {
       "type": "null"
      }
     ]
    },
    "company_twitter": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ]
    },
    "company_facebook": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ]
    },
    "company_industry": {
     "type": "string"
    },
    "company_linkedin": {
     "type": "string"
    },
    "company_locality": {
     "type": "string"
    },
    "company_location": {
     "type": "string"
    },
    "company_size_range": {
     "type": "string"
    },
    "company_description": {
     "type": "string"
    },
    "company_linkedin_id": {
     "type": "string"
    },
    "company_postal_code": {
     "type": "string"
    },
    "company_revenue_range": {
     "type": "string"
    },
    "company_last_funding_at": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ]
    },
    "company_last_funding_round": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ]
    },
    "c
… (truncated)
```

## More

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