# Orbonomy Company Data Lookup

> Orbonomy Company Data Lookup is a paid API for AI agents from app.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Retrieves data about a company by name via the Orbonomy unified API platform

## Facts

- Endpoint: POST https://app.orbonomy.xyz/api/data/company
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-company-data-lookup-992bd218
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lOoCmQGL2Pa2LxVnF8EHc

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 orbonomy-company-data-lookup-992bd218 -d '<json body>'
```

Example prompt: Can you pull up the company data for 'Stripe' from Orbonomy so I can see what information they have on it?

## When to prefer this

Use this endpoint when you need to look up structured company data by name via a pay-per-call model without a subscription. Prefer this over enterprise data providers when cost-per-call at $0.05 USDC is acceptable and you only need occasional company lookups.

## Known failure modes

- Company name not found — returns success: false or empty data
- Invalid or missing 'name' field — returns 400 bad request
- Payment not fulfilled via x402 protocol — returns 402 payment required
- Service unavailable — returns 503 or timeout

## How this service works

50+ pay-per-call API endpoints across accommodation, AI, content, fact-checking, and data services. Powered by x402 protocol.

## Output

Returns a JSON object with a success boolean and company data associated with the provided company name.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "name"
 ],
 "properties": {
  "name": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orbonomy-company-data-lookup-992bd218/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from app.orbonomy.xyz](https://www.zero.xyz/host/app.orbonomy.xyz/llms.txt)
