# Orbonomy Marketplace Data Query

> Orbonomy Marketplace Data Query is a paid API for AI agents from main.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Queries a unified marketplace of 50+ pay-per-call API services across accommodation, AI, content, fact-checking, and data domains using a search query and platform specifier

## Facts

- Endpoint: POST https://main.orbonomy.xyz/api/data/marketplace
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-marketplace-data-query-950391ad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vVcEmVIPzR2CyFSMMv7M3

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-marketplace-data-query-950391ad -d '<json body>'
```

Example prompt: Search the Orbonomy marketplace for hotel accommodation options, using the 'accommodation' platform, for 'budget hotels in New York'.

## When to prefer this

Use this endpoint when you need to query a unified multi-domain marketplace that spans accommodation, AI, content, fact-checking, and data services in a single pay-per-call interface via the x402 protocol, and you know the target platform category you want to search within.

## Known failure modes

- Missing required 'query' field returns validation error
- Missing required 'platform' field returns validation error
- Unknown or unsupported platform value returns no results or error
- Payment not fulfilled via x402 protocol results in 402 Payment Required response
- Malformed request body returns 400 Bad Request
- Downstream provider outage results in empty or failed success response

## 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 marketplace data results corresponding to the submitted query and platform, sourced from one of Orbonomy's 50+ service integrations.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query",
  "platform"
 ],
 "properties": {
  "query": {
   "type": "string"
  },
  "platform": {
   "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-marketplace-data-query-950391ad/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from main.orbonomy.xyz](https://www.zero.xyz/host/main.orbonomy.xyz/llms.txt)
