# FluxKit Company Enrichment

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

Enriches a company domain with firmographics, social profiles, tech stack, contact info, and address data for sales prospecting and CRM use cases.

## Facts

- Endpoint: GET https://x402.fluxkit.site/api/enrich
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fluxkit-company-enrichment-045cfcd6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_a5S3ARkjXTgdnG-8INoTM

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 fluxkit-company-enrichment-045cfcd6
```

Example prompt: Can you pull up the full company profile for stripe.com — I need their description, social links, tech stack, and contact info for our CRM?

## When to prefer this

Choose this endpoint when you need a broad, single-call company profile sweep from a domain — covering firmographics, socials, tech stack, and contact info together. It's ideal for B2B sales prospecting workflows and CRM auto-enrichment where you want a one-shot data pull rather than separate specialized API calls.

## Known failure modes

- Invalid or non-existent domain returns empty or error response
- Domain resolves but company data is sparse — fields may be null or empty
- Rate limiting or payment failure (402) if USDC payment is not properly attached
- Slow or unresponsive domain may cause scan timeouts
- Private/intranet domains return no useful data

## How this service works

Company enrichment from any domain. Firmographics, socials, tech stack, contact info, address. Built for sales prospecting and CRM.

## Output

Returns a JSON object with the company's name, domain, logo URL, favicon, plain-text description, social profile links, contact information, tech stack array, meta tags, and scan timing/pages metadata.

## 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/fluxkit-company-enrichment-045cfcd6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.fluxkit.site](https://www.zero.xyz/host/x402.fluxkit.site/llms.txt)
