# Orbonomy Data Catalog Search

> Orbonomy Data Catalog Search 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).

Searches and retrieves entries from Orbonomy's unified data catalog across accommodation, AI, content, fact-checking, and data service categories

## Facts

- Endpoint: POST https://www.orbonomy.xyz/api/data/catalog
- 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-data-catalog-search-0d442399
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z07qPGsc-bueDdKkpyw4n

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-data-catalog-search-0d442399 -d '<json body>'
```

Example prompt: Search the Orbonomy data catalog for available fact-checking APIs in the 'fact-checking' category.

## When to prefer this

Use this endpoint when you need to discover what specific APIs are available within the Orbonomy platform across its supported categories (accommodation, AI, content, fact-checking, data). Prefer this over generic web search when you want structured, machine-readable catalog metadata about Orbonomy's pay-per-call offerings.

## Known failure modes

- Missing required fields (query or category) returns a 400 error
- Unknown or unsupported category returns empty results
- Payment failure via x402 protocol returns 402 Payment Required
- Service unavailable returns 500 error
- Query yields no matching catalog entries returns success:true with empty results array

## 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 success flag and catalog results matching the query and category, listing available Orbonomy API endpoints and service metadata within the specified domain area.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query",
  "category"
 ],
 "properties": {
  "query": {
   "type": "string"
  },
  "category": {
   "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-data-catalog-search-0d442399/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)
