# Orbonomy Company Data Lookup

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

Looks up structured company data by company name via the Orbonomy unified API platform

## Facts

- Endpoint: POST https://www.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-53319795
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uznV0dsAT5S42V0sB6JSM

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

Example prompt: Can you pull up the company data for 'Stripe' from Orbonomy — I need whatever structured information they have on that company.

## When to prefer this

Use this endpoint when you need to quickly retrieve structured data about a specific company by name and are already operating within the Orbonomy x402 pay-per-call ecosystem; suitable for one-off company lookups at low cost ($0.05 USDC).

## Known failure modes

- Company name not found in database returns success: false
- Missing required 'name' field returns a 400-level validation error
- Payment failure or insufficient funds returns 402 Payment Required
- Ambiguous or misspelled company name may return no results or wrong company

## 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 structured company data fields for the queried company name, accessed via pay-per-call at $0.05 USDC per request.

## 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-53319795/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.orbonomy.xyz](https://www.zero.xyz/host/www.orbonomy.xyz/llms.txt)
