# AgentPay Legal Lookup

> AgentPay Legal Lookup is a paid API for AI agents from agentpay.help, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Looks up company registration status, jurisdiction, and incorporation details by company name or registration number

## Facts

- Endpoint: POST https://agentpay.help/v1/legal-lookup
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentpay-legal-lookup-5b774b0f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pPKiu1i0WdrFIDULVXEsG

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 agentpay-legal-lookup-5b774b0f -d '<json body>'
```

Example prompt: Can you look up the legal registration status of 'Northwind Traders LLC' and tell me what jurisdiction it's registered in and when it was incorporated?

## When to prefer this

Choose this endpoint when you need a quick, low-cost, no-account-required lookup of company registration details by name or registration number, especially for due diligence, vendor verification, or compliance checks. Ideal for AI agents that need to autonomously verify business legitimacy without manual API key setup, paying only $0.03 USDC per call via the x402 protocol.

## Known failure modes

- Company not found in registry — empty results array returned
- Ambiguous company name matches multiple entities — multiple results returned requiring disambiguation
- Invalid or unsupported jurisdiction filter — may return error or empty results
- Query string too vague or too short — low-quality or no results
- Registry data may be stale or not reflect most recent status changes

## How this service works

Pay-per-call AI services via the 402 Payment Required protocol. No accounts, no API keys — just USDC on Base.

## Output

Returns an array of matching company records, each containing the company name, current status (e.g. active/inactive), jurisdiction of registration, and incorporation date. Multiple results may be returned if the query matches more than one entity.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string",
   "description": "Company name or registration number"
  },
  "jurisdiction": {
   "type": "string",
   "description": "Jurisdiction filter, optional"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "results": [
   {
    "name": "Northwind Traders LLC",
    "status": "active",
    "jurisdiction": "Delaware",
    "incorporation_date": "2019-04-02"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentpay-legal-lookup-5b774b0f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentpay.help](https://www.zero.xyz/host/agentpay.help/llms.txt)
