# klymax402 Company Enrichment API

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

Enriches a company domain name with metadata including name, logo, description, tech stack, social links, and contact info

## Facts

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

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-6b7bcd22
```

Example prompt: Can you look up company info for stripe.com — I need the company name, logo, description, tech stack, and any social links you can find?

## When to prefer this

Choose this endpoint when you need quick, structured company enrichment from just a domain name — especially useful for B2B lead enrichment, competitive research, or auto-populating company profiles. It covers logo, description, tech stack, social, and contact data in one call at $0.02 USDC, requiring no separate API keys.

## Known failure modes

- Domain not found or unreachable — may return empty fields or error
- Private or restricted domain — limited data returned
- Very new domains may have insufficient indexed data
- Payment failure via x402 USDC on Base — request blocked
- Rate limiting or timeout if target site is slow to respond

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

A JSON object containing the company's name, domain, logo URL, favicon URL, description, tech stack array, social media links object, contact information object, meta tags object, scan time in milliseconds, and list of pages scanned during enrichment.

## 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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "logo": "example",
  "meta": {},
  "name": "example",
  "domain": "example",
  "social": {},
  "contact": {},
  "favicon": "example",
  "tech_stack": [],
  "description": "example",
  "scan_time_ms": 1,
  "pages_scanned": []
 }
}
```

## More

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