# Klymax402 Company Enrichment API

> Klymax402 Company Enrichment API is a paid API for AI agents from company-enrichment.api.klymax402.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Enriches a company profile from its domain name, returning firmographic and business data

## Facts

- Endpoint: GET https://company-enrichment.api.klymax402.com/api/enrich
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/klymax402-company-enrichment-api-decf1614
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OxlWr1sC_WwLEKyClHhwD

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 klymax402-company-enrichment-api-decf1614
```

Example prompt: Can you pull up the company profile for stripe.com — I need their industry, size, and any other business details you can find?

## When to prefer this

Use this endpoint when you need to enrich a known company domain with firmographic data in real time, particularly in sales, marketing, or lead qualification workflows where you have a domain and need structured business context. Suitable for single-domain lookups at low cost ($0.01/call) via x402 micropayment.

## Known failure modes

- Unknown or unrecognized domain returns empty or minimal result
- Domain with no associated company data returns null fields
- Invalid domain format causes a 400 bad request
- Payment failure via x402 protocol results in 402 Payment Required
- Rate limiting or quota exceeded returns 429
- Newly registered domains with no indexed data return sparse results

## How this service works

Enrich a company from its domain name

## Output

A structured company profile object containing firmographic details about the company associated with the given domain, such as company name, industry, employee count, headquarters location, description, and other business attributes.

## 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": "Domain to enrich (e.g. stripe.com, shopify.com)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

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