# Orbonomy Company Data Lookup

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

Retrieves structured company data by company name via a pay-per-call API endpoint.

## Facts

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

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-e7c4902b -d '<json body>'
```

Example prompt: Can you look up company data for 'OpenAI' using Orbonomy and tell me what information comes back?

## When to prefer this

Use this endpoint when you need to programmatically retrieve structured company data by name on a pay-per-call basis without a subscription, particularly when integrating with x402 micropayment workflows.

## Known failure modes

- Company name not found in database — success: false returned
- Missing required 'name' field — request validation error
- Payment failure via x402 protocol — 402 response before data is returned
- Upstream data source unavailable — service timeout or error
- Invalid input type for name field — schema validation rejection

## 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 boolean success field indicating whether the lookup succeeded, along with company data associated with the queried 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-e7c4902b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from backup-v2api.orbonomy.xyz](https://www.zero.xyz/host/backup-v2api.orbonomy.xyz/llms.txt)
