# Riley Craig x402 Agent Store - Company Connect Lookup

> Riley Craig x402 Agent Store - Company Connect Lookup is a paid API for AI agents from x402-agent-store.rileycraig14.workers.dev, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-14).

Looks up enriched company information (summary, domain age, email availability, registrar, Wikipedia link) for a given company domain, paid per-call via x402 USDC microtransaction.

## Facts

- Endpoint: GET https://x402-agent-store.rileycraig14.workers.dev/connect/company
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/riley-craig-x402-agent-store-company-connect-lookup-253073af
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mo3kzn5ShjVNCcdtlrMmV

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 riley-craig-x402-agent-store-company-connect-lookup-253073af
```

Example prompt: Can you look up company details for stripe.com — I want to know what they do, how old the domain is, who the registrar is, and if there's a Wikipedia page for them?

## When to prefer this

Use this endpoint when you need quick, enriched company background data from just a domain name — especially useful for due diligence, lead enrichment, or verifying a business without needing an API key or account. Prefer over general web search when you want structured output (summary, domain age, registrar) rather than raw search results.

## Known failure modes

- Invalid or unrecognized domain returns empty or error response
- Domain with no public company presence may return minimal data
- Non-company domains (e.g. personal blogs) may return low-quality summaries
- Payment failure via x402 results in 402 response with no data
- Rate limiting or worker errors may return 5xx

## How this service works

Enrich any company by its domain in one call — RDAP registration age + registrar, DNS (does it run email, what website/host), and a Wikipedia company profile when available. The cheap company-intelligence read sales, research, and qualification agents make. Free public upstreams, pure margin — our entry into the data-enrichment lane (StableEnrich charges $0.02-0.05 for paid-upstream enrichment; this is the free-data company layer at a fraction).

## Output

Returns a JSON object with the company domain, a plain-language summary of what the company does, whether email is available, the domain registrar name, a Wikipedia URL if available, and the domain age in years.

## 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": "Company domain, e.g. stripe.com (or a full URL)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "summary": {
       "type": "string"
      },
      "has_email": {
       "type": "boolean"
      },
      "domain_age_years": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "domain": "stripe.com",
  "summary": "Stripe is a financial services and SaaS company...",
  "has_email": true,
  "registrar": "MarkMonitor",
  "wikipedia": "https://en.wikipedia.org/wiki/Stripe,_Inc.",
  "domain_age_years": 15
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/riley-craig-x402-agent-store-company-connect-lookup-253073af/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-agent-store.rileycraig14.workers.dev](https://www.zero.xyz/host/x402-agent-store.rileycraig14.workers.dev/llms.txt)
