# CodePulse API - Company Address Lookup

> CodePulse API - Company Address Lookup is a paid API for AI agents from codepulse-api.hahavoid0.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Looks up the registered address of a company given its name or identifier, returning structured address fields with confidence scoring.

## Facts

- Endpoint: POST https://codepulse-api.hahavoid0.workers.dev/company/address
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/codepulse-api-company-address-lookup-70f30952
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_whK99yZEgO2fXg9WroGdO

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 codepulse-api-company-address-lookup-70f30952 -d '<json body>'
```

Example prompt: What's the official registered address on file for Apple Inc.? I need the full street, city, state, and zip.

## When to prefer this

Use this endpoint when an AI agent needs to resolve the official registered or mailing address of a named company, especially for enrichment, verification, or due-diligence workflows. At $0.001 per call with no API key required (x402 USDC on Base), it is ideal for lightweight, pay-per-use agent pipelines where setting up a subscription-based data provider is overkill.

## Known failure modes

- Company not found or unsupported — 'supported' field returns false
- Ambiguous company name yields low confidence score or warnings array populated
- Malformed request body returns HTTP error
- Payment not processed — x402 payment required before response is served
- Stale or unavailable registry data returns older data_as_of date

## How this service works

Resolves official corporate address and incorporation details from SEC EDGAR registry records.

## Output

A JSON object containing the company's structured address (street, city, state, zip), a confidence level (e.g. 'high'), the data freshness date (e.g. '2026-06'), a supported flag, any warnings, and a disclaimer about informational use only.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "cik"
     ],
     "properties": {
      "cik": {
       "type": "string",
       "description": "10-digit CIK identifier"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "zip": "95014",
   "city": "CUPERTINO",
   "state": "CA",
   "street1": "ONE APPLE PARK WAY"
  },
  "warnings": [],
  "supported": true,
  "confidence": "high",
  "data_as_of": "2026-06",
  "disclaimer": "Informational support only. Not legal, tax, medical, veterinary, or financial advice. Verify with the cited official source or a qualified professional before acting."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/codepulse-api-company-address-lookup-70f30952/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from codepulse-api.hahavoid0.workers.dev](https://www.zero.xyz/host/codepulse-api.hahavoid0.workers.dev/llms.txt)
